開發平台(Platform): (Ex: Win10, Linux, ...)
win7
編譯器(Ex: GCC, clang, VC++...)+目標環境(跟開發平台不同的話需列出)
vc2010
額外使用到的函數庫(Library Used): (Ex: OpenGL, ...)
問題(Question):
最近在模仿設計模式的狀態模式
沒權力執行的class會丟出例外
我想要catch掉就好
沒有想要利用該例外物件
因為宣告後沒使用
就跳warning了
餵入的資料(Input):
預期的正確結果(Expected Output):
可以接收指定exception,然後在不做事的情況下
去掉 “未參考的變數區域” 的警告
錯誤結果(Wrong Output):
程式碼(Code):(請善用置底文網頁, 記得排版,禁止使用圖檔)
try{ ... } //do something
catch (exception ^e){ } //do nothing here
補充說明(Supplement):
https://blog.csdn.net/flyingshineangel/article/details/51163727