开发平台(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