@if...@elif...@else...@end 语句
更新:2007 年 11 月
根据表达式的值,有条件地执行一组语句。
@if (
condition1
)
text1
[@elif (
condition2
)
text2]
[@else
text3]
@end
参数
condition1 和 condition2
必选。一个可强迫转换为布尔表达式的表达式。text1
可选项。condition1 为 true 时要分析的文本。text2
可选项。condition1 为 false 且 condition2 为 true 时要分析的文本。text3
可选项。condition1 和 condition2 均为 false 时要分析的文本。
备注
在写 @if 语句时,不必将每个子句放到独立的行。可使用多个 @elif 子句。但是,所有 @elif 子句必须在 @else 子句之前出现。
通常使用 @if 语句来确定应当使用若干选项中的哪个选项来进行文本输出。
示例
下面的示例阐释了 **@if...@else...@end** 语句的用法。
@if (@_win32)
print("Operating system is 32-bit.");
@else
print("Operating system is not 32-bit.");
@end