轉:http://hi.baidu.com/nkhzj/blog/item/0c4ade167010a81b972b4307.html
今天在VC6.0中使用dynamic_cast<>運算子時遇到一個莫明其妙的警告:
warning C4541: 'dynamic_cast' used on polymorphic type 'class MyObject' with /GR-; unpredictable behavior may result.
而這個警告實際上是一個嚴重的錯誤,回導致程式異常中止,可我檢查發現代碼上沒有錯誤啊?! 後來上MSDN查詢編譯器/GR選項的含義時,終於弄清楚了這個問題。
原來這個問題是因為VC6.0編譯器預設不支援C++中的RTTI,所以在編譯包含dynamic_cast或者typeid運算子的程式時就會發出警告。“/GR-”選項的含義就是表示關閉“/GR”( 即Grant RTTI ) 。 解除這個警告的辦法就是開啟"/GR"選項或者直接在編譯器參數中添加"/GR"即可。
MSDN中的全文描述如下:
/GR (Enable Run-Time Type Information)
The Enable Run-Time Type Information option (/GR) causes the compiler to add code to check object types at run time. When this option is specified, the compiler defines the _CPPRTTI preprocessor macro. The option is cleared (/GR–) by default.
To find this option in the development environment, click Settings on the Project menu. Then click the C/C++ tab, and click C++ Language in the Category box.