在一个单元DEFINE,可不可以在另外一个单元使用(不能使用导入.inc文件方式)?(50分)

  • 主题发起人 主题发起人 kingbenz
  • 开始时间 开始时间
K

kingbenz

Unregistered / Unconfirmed
GUEST, unregistred user!
例:
unit1:
{$DEFINE AA}

unit2:
{$IFDEF AA}
showmessage('aa');
{$ENDIF}
 
不行的,试过了。
 
当然不行.
 
Defines a conditional symbol with the given name. The symbol is recognized for the remainder of the compilation of the [red]current module[/red] in which the symbol is declared, or until it appears in an {$UNDEF name} directive. The {$DEFINE name} directive has no effect if name is already defined.

当前模块
 
后退
顶部