y***y 发帖数: 295 | 1 刚开始使用VS调程序
加了几个breakpoint之后debug但是毫无效果
程序直接运行结束(breakpoint的位置肯定没有问题)
重新build也是一样
请问这是怎么回事呢?
是我什么地方设置的不对么?
谢谢! |
c**t 发帖数: 2744 | 2 build in release mode?
【在 y***y 的大作中提到】 : 刚开始使用VS调程序 : 加了几个breakpoint之后debug但是毫无效果 : 程序直接运行结束(breakpoint的位置肯定没有问题) : 重新build也是一样 : 请问这是怎么回事呢? : 是我什么地方设置的不对么? : 谢谢!
|
y***y 发帖数: 295 | 3 no, debug mode
【在 c**t 的大作中提到】 : build in release mode?
|
k**f 发帖数: 372 | 4 Are you sure the program goes through the breakpoints you set? If it is a C/
C++ program, try to put a break point at the first executable line in main()
to see if the program gets there.
In a C++ program, there maybe code (constructor of global variable) executed
before main() is entered. If something is wrong there, the program may exit
before main(). |