VB.Net - 指令



VB.Net 编译器指令向编译器提供指令,以便在实际编译开始之前预处理信息。所有这些指令都以 # 开头,并且在一行指令之前只能出现空格字符。这些指令不是语句。

VB.Net 编译器没有单独的预处理器;但是,指令的处理方式就像有一个预处理器一样。在 VB.Net 中,编译器指令用于帮助进行条件编译。与 C 和 C++ 指令不同,它们不用于创建宏。

VB.Net 中的编译器指令

VB.Net 提供以下编译器指令集:

  • #Const 指令

  • #ExternalSource 指令

  • #If...Then...#Else 指令

  • #Region 指令

#Const 指令

此指令定义条件编译常量。此指令的语法如下:

#Const constname = expression

其中,

  • constname − 指定常量的名称。必填。

  • expression − 它可以是文字、其他条件编译常量,或包含任何或所有算术或逻辑运算符(除了 Is)的组合。

例如,

#Const state = "WEST BENGAL"

示例

以下代码演示了该指令的假设用法:

Module mydirectives
#Const age = True
Sub Main()
   #If age Then
      Console.WriteLine("You are welcome to the Robotics Club")
   #End If
   Console.ReadKey()
End Sub
End Module

编译并执行上述代码时,会产生以下结果:

You are welcome to the Robotics Club

#ExternalSource 指令

此指令用于指示源代码特定行与源代码外部文本之间的映射。它仅供编译器使用,调试器对代码编译没有影响。

此指令允许将外部代码文件中的外部代码包含到源代码文件中。

此指令的语法如下:

#ExternalSource( StringLiteral , IntLiteral )
   [ LogicalLine ]
#End ExternalSource

#ExternalSource 指令的参数是外部文件的路径、第一行的行号以及发生错误的行。

示例

以下代码演示了该指令的假设用法:

Module mydirectives
   Public Class ExternalSourceTester

      Sub TestExternalSource()

      #ExternalSource("c:\vbprogs\directives.vb", 5)
         Console.WriteLine("This is External Code. ")
      #End ExternalSource

      End Sub
   End Class

   Sub Main()
      Dim t As New ExternalSourceTester()
      t.TestExternalSource()
      Console.WriteLine("In Main.")
      Console.ReadKey()

   End Sub

编译并执行上述代码时,会产生以下结果:

This is External Code.
In Main.

#If...Then...#Else 指令

此指令有条件地编译 Visual Basic 代码的选定块。

此指令的语法如下:

#If expression Then
   statements
[ #ElseIf expression Then
   [ statements ]
...
#ElseIf expression Then
   [ statements ] ]
[ #Else
   [ statements ] ]
#End If

例如,

#Const TargetOS = "Linux"
#If TargetOS = "Windows 7" Then
   ' Windows 7 specific code
#ElseIf TargetOS = "WinXP" Then
   ' Windows XP specific code
#Else
   ' Code for other OS
#End if

示例

以下代码演示了该指令的假设用法:

Module mydirectives
#Const classCode = 8

   Sub Main()
   #If classCode = 7 Then
      Console.WriteLine("Exam Questions for Class VII")
   #ElseIf classCode = 8 Then
      Console.WriteLine("Exam Questions for Class VIII")
   #Else
      Console.WriteLine("Exam Questions for Higher Classes")
   #End If
      Console.ReadKey()

   End Sub
End Module

编译并执行上述代码时,会产生以下结果:

Exam Questions for Class VIII

#Region 指令

此指令有助于在 Visual Basic 文件中折叠和隐藏代码部分。

此指令的语法如下:

#Region "identifier_string" 
#End Region

例如,

#Region "StatsFunctions" 
   ' Insert code for the Statistical functions here.
#End Region
广告