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[
|