ifdef...elsifdef...elsedef...endifdef 语句

ifdef 语句

ifdef 语句在解析时执行,而不是运行时执行。 这使您可以非常有效地改变程序的运行方式。

由于 ifdef 语句在解析时工作,因此无法检查运行时值,而是也可以在解析时设置或取消设置特殊定义。

语法

ifdef语句的语法如下 −

ifdef macro then
   -- Statements will execute if the macro is defined.
end if

如果布尔表达式的计算结果为 true,则执行 if 语句内的代码块。 如果没有,则执行 ifdef 语句结束后的第一组代码。

ifdef 检查使用 with Define 关键字定义的宏。 有很多宏定义,如 WIN32_CONSOLE、WIN32 或 LINUX。 您可以定义自己的宏,如下所示 −

with define    MY_WORD    -- defines

您可以取消定义已定义的单词,如下所示 −

without define OTHER_WORD -- undefines

示例

#!/home/euphoria-4.0b2/bin/eui

with define DEBUG

integer a = 10
integer b = 20

ifdef DEBUG then
   puts(1, "Hello, I am a debug message one\n")
end ifdef

if (a + b) < 40 then
   printf(1, "%s\n", {"This is true if statement!"})
end if

if (a + b) > 40 then
   printf(1, "%s\n", {"This is not true if statement!"})
end if

这会产生以下结果 −

Hello, I am a debug message one
This is true if statement!

ifdef...elsedef 语句

如果给定的宏已定义,您可以执行一项操作,否则,如果给定的宏未定义,您可以执行另一项操作。

语法

ifdef...elsedef 语句的语法如下 −

ifdef macro then
   -- Statements will execute if the macro is defined.
elsedef
   -- Statements will execute if the macro is not defined.
end if

示例

#!/home/euphoria-4.0b2/bin/eui

ifdef WIN32 then
   puts(1, "This is windows 32 platform\n")
elsedef
   puts(1, "This is not windows 32 platform\n")
end ifdef

当你在 Linux 机器上运行这个程序时,它会产生以下结果 −

This is not windows 32 platform

ifdef...elsifdef 语句

您可以使用ifdef...elsifdef语句检查多个宏。

语法

ifdef...elsifdef语句的语法如下 −

ifdef macro1 then
   -- Statements will execute if the macro1 is defined.
elsifdef macro2 then
   -- Statements will execute if the macro2 is defined.
elsifdef macro3 then
   -- Statements will execute if the macro3 is defined.
   .......................
elsedef
   -- Statements will execute if the macro is not defined.
end if

示例

#!/home/euphoria-4.0b2/bin/eui

ifdef WIN32 then
   puts(1, "This is windows 32 platform\n")
elsifdef LINUX then
   puts(1, "This is LINUX platform\n")
elsedef
   puts(1, "This is neither Unix nor Windows\n")
end ifdef

当你在 Linux 机器上运行这个程序时,它会产生以下结果 −

This is LINUX platform

以上语句都有多种形式,可以根据不同情况灵活方便地使用。

❮ euphoria_branching.html