由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - vc++里设breakpoint condition是一个string variable怎么办?谢 (转载)
相关主题
why use static function here?这段code有啥问题?
Java banned operator overloadingC++ func overload question
问个overloading new operator的问题How to overload global new operator?
请问一个implicit conversion的问题(C++)python 可以给class动态添加method吗?
一个inheritance 的问题operator overloading (C++)
这个问题怎么答?a simple design question
question overloading ++ errorc++ operator overloading question
one question about overloading operator deleteC++ Q89: function template and overloading (转载)
相关话题的讨论汇总
话题: breakpoint话题: condition话题: 里设话题: string话题: variable
进入Programming版参与讨论
1 (共1页)
g*****1
发帖数: 998
1
【 以下文字转载自 JobHunting 讨论区 】
发信人: guagua1 (), 信区: JobHunting
标 题: vc++里设breakpoint condition是一个string variable怎么办?谢谢
发信站: BBS 未名空间站 (Fri Mar 4 13:13:33 2011, 美东)
就是比如我想让condition 是
x="abc"
结果提示: breakpoint cann't be set. unable to evaluate the condition
cxx0058 overloaded operator not found
d****p
发帖数: 685
2
you mean x == "abc" where x is of type std::string?
std::string is STL stuff and you may have to use the raw form ie x._Bx._Buf[
] == 'a' && blah. Blame MSFT for not making VS smarter :-)

【在 g*****1 的大作中提到】
: 【 以下文字转载自 JobHunting 讨论区 】
: 发信人: guagua1 (), 信区: JobHunting
: 标 题: vc++里设breakpoint condition是一个string variable怎么办?谢谢
: 发信站: BBS 未名空间站 (Fri Mar 4 13:13:33 2011, 美东)
: 就是比如我想让condition 是
: x="abc"
: 结果提示: breakpoint cann't be set. unable to evaluate the condition
: cxx0058 overloaded operator not found

g*****1
发帖数: 998
3
thanks

Buf[

【在 d****p 的大作中提到】
: you mean x == "abc" where x is of type std::string?
: std::string is STL stuff and you may have to use the raw form ie x._Bx._Buf[
: ] == 'a' && blah. Blame MSFT for not making VS smarter :-)

P********e
发帖数: 2610
4
我记的有一版vs 增加了debug stl的功能。好像是vs2010

【在 g*****1 的大作中提到】
: thanks
:
: Buf[

1 (共1页)
进入Programming版参与讨论
相关主题
C++ Q89: function template and overloading (转载)一个inheritance 的问题
C++ function template问题这个问题怎么答?
c++ pointers are iterators, why?question overloading ++ error
请问关于overloading <<one question about overloading operator delete
why use static function here?这段code有啥问题?
Java banned operator overloadingC++ func overload question
问个overloading new operator的问题How to overload global new operator?
请问一个implicit conversion的问题(C++)python 可以给class动态添加method吗?
相关话题的讨论汇总
话题: breakpoint话题: condition话题: 里设话题: string话题: variable