1若在本单元中定义全局变量,使其在本单元中都可用到,可以这样定义
implementation
VAR
TEST: STRING;
......
2若在整个应用程序中定义全局变量,使其在各单元中都可用到,可以这样定义
unit test
interface
.....
var
test: string
...
implementation
但在别的单元中要用到该变量,要在该单元中(test1)的
unit test1
interface
.......
implementation
uses test
这样就可以在test1中用到test这个变量