程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> C# 語言標准--2.5.5 診斷指令

C# 語言標准--2.5.5 診斷指令

編輯:C#入門知識

診斷指令用於顯式生成錯誤信息和警告消息,這些信息的報告方式與其他編譯時錯誤和警告相同。

pp-diagnostic:(pp 診斷:)
whitespaceopt   #   whitespaceopt   error   pp-message(空白可選   #   空白可選   error   pp 消息)
whitespaceopt   #   whitespaceopt   warning   pp-message(空白可選   #   空白可選   warning   pp 消息)
pp-message:(pp 消息:)
new-line(新行)
whitespace   input-charactersopt   new-line(空白   輸入字符可選   新行)

示例:

#warning Code review needed before check-in



#if Debug && Retail



   #error A build can't be both debug and retail



#endif



class Test {...}

總是產生一個警告(“Code review needed before check-in”),如果同時定義條件符號 DebugRetail,則產生一個編譯時錯誤(“A build can't be both debug and retail”)。注意 pp-message(pp 消息)可以包含任意文本;具體說來,它可以包含格式不正確的標記,比如“can't”中的單引號就是這樣。



 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved