warning C4541: 'dynamic_cast' used on polymorphic type 'class MyObject' with /GR-; unpredictable beh

今天在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.

 

解决方法:

project->Settings->c/c++(catagory)->c++ language

在Enable Runtime Type Information(RTTI)前勾选。

本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/miyunhong/archive/2010/01/15/5193589.aspx

  • 1
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值