请教IFDEF.ELSE条件编译里怎么使用 AND 、OR 处理多个条件

请问IFDEF...ELSE条件编译里如何使用 AND 、OR 处理多个条件
没有在DELPHI的帮助里找到说明,也没有看到有类似的例子。

DELPHI 的IF条件编译,不支持使用 AND、OR 这样的语法吗?那当对一个代码块需要做多个条件判断时,该怎么写?

{$IFDEF  Debug}
XXX
{$ENDIF}
------解决思路----------------------
const
  a = '12345';

{$IF Defined(Debug) or (sizeof(Integer)=4) or (Length(a) = 5)}
{$endif}
------解决思路----------------------
支持
  {$IF Defined(Condition1) or Defined(Condition2) and Defined(Condition3)}

  {$ELSE}

  {$IFEND}
和普通的and,or逻辑一样
------解决思路----------------------
引用
IF directive

See also
Type Conditional compilation
Syntax {$IF expression}
Remarks

Compiles the Delphi source code that follows it if expression is true. expression must conform to Delphi syntax and return a Boolean value; it may contain declared constants, constant expressions, and the functions Defined and Declared.
For example,

{$DEFINE CLX}

const LibVersion = 2.1;

{$IF Defined(CLX) and (LibVersion > 2.0) }
  ...  // this code executes
{$ELSE}
  ...  // this code doesn't execute

{$IFEND}

{$IF Defined(CLX) }
  ...  // this code executes
{$ELSEIF LibVersion > 2.0}
  ...  // this code doesn't execute
{$ELSEIF LibVersion = 2.0}
  ...  // this code doesn't execute
{$ELSE}
  ...  // this code doesn't execute
{$IFEND}

{$IF Declared(Test)}
  ... // successful
{$IFEND}

The special functions Defined and Declared are available only within $IF and $ELSEIF blocks. Defined returns true if the argument passed to it is a defined conditional symbol. Declared returns true if the argument passed to it is a valid declared Delphi identifier visible within the current scope.

If the identifiers referenced in the conditional expression do not exist, the conditional expression will be evaluated as false:

{$IF NoSuchVariable > 5}

 WriteLn('This line doesn''t compile');

{$IFEND}

The $IF and $ELSEIF directives are terminated with $IFEND, unlike other conditional directives that use the $ENDIF terminator. This allows you to hide $IF blocks from earlier versions of the compiler (which do not support $IF or $ELSEIF) by nesting them within old-style $IFDEF blocks. For example, the following construction would not cause a compilation error:

     {$UNDEF NewEdition}

     {$IFDEF NewEdition}
       {$IF LibVersion > 2.0}
         ...
       {$IFEND}
     {$ENDIF}

$IF supports evaluation of typed constants, but the compiler doesn't allow typed constants within constant expressions. As a result,

const Test: Integer = 5;

{$IF SizeOf(Test) > 2}

...

is valid, while

const Test: Integer = 5;

{$IF Test > 2 }         // error

...

generates a compilation error.

If your code needs to be portable between various versions of Delphi or Kylix, you will need to test whether or not this directive is supported by the compiler. You can surround your code with the following directives:

$IFDEF conditionalexpressions

.          // code including IF directive
.          // only executes if supported
$ENDIF