轉:VC6.0中C4541號警告的原因以及解決方案 (dynamic_cast出錯)

來源:互聯網
上載者:User

轉: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.

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.