标题: cxxx0017:Error:symbol "this" not found [打印本页] 作者: 尐嘴亂儭 时间: 2009-11-4 00:53 标题: cxxx0017:Error:symbol "this" not found 我的程序编译通过了,但是运行一定步数之后就会出现问题,单步调试结果显示:cxxx0017:Error:symbol "this" not found
谁能帮帮我啊,我急用这个程序结果。作者: 阿俊 时间: 2009-11-4 00:53
你能不能把代码发上来作者: ˇ风逍遥ˇ 时间: 2009-11-4 00:53
你把错误信息贴全点,这只是部分的吧!作者: 未来的回忆 时间: 2009-11-4 00:53
Expression Evaluator Error CXX0017
symbol not found
A symbol specified in an expression could not be found.
One possible cause of this error is a case mismatch in the symbol name. Because C and C++ are case-sensitive languages, a symbol name must be given in the exact case in which it is defined in the source.
This error can occur when trying to typecast a variable in order to watch the variable during debugging. The typedef declares a new name for a type, but it does not define a new type. The typecast attempted in the debugger requires the name of a defined type.
Tips
Make sure the symbol is already declared at the point in the program where it is being used.
Use an actual type name to cast variables in the debugger, rather than a typedef defined name.
This error is identical to CAN0017.