由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - VS里debug不work求教!
相关主题
问个问题,关于gdb的Node.js 写的 JS 代码有点难读懂
[合集] Debugging large macro这几天试了一下linux c++ IDE
请问在ASP.net中用Javascript的一个问题一个怪怪的bug
gdb debug c++的问题软断点和硬断点有什么区别啊? (转载)
debug error unable to automatically step into the server in (转载)vc++里设breakpoint condition是一个string variable怎么办?谢 (转载)
VC++ 中的 memory leak problemvisual studio 2010: how to have separate pane at the bottom?
熟悉visual studio的朋友请帮一下忙有谁对glibc的allocator有研究?
javascript才是未来发展的方向gdb breakpoint 问题
相关话题的讨论汇总
话题: vs话题: debug话题: program话题: c++话题: main
进入Programming版参与讨论
1 (共1页)
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().
1 (共1页)
进入Programming版参与讨论
相关主题
gdb breakpoint 问题debug error unable to automatically step into the server in (转载)
有没有大牛给讲下javascript的内存泄漏VC++ 中的 memory leak problem
Be $#%!ing explicit熟悉visual studio的朋友请帮一下忙
借人气问个C++问题javascript才是未来发展的方向
问个问题,关于gdb的Node.js 写的 JS 代码有点难读懂
[合集] Debugging large macro这几天试了一下linux c++ IDE
请问在ASP.net中用Javascript的一个问题一个怪怪的bug
gdb debug c++的问题软断点和硬断点有什么区别啊? (转载)
相关话题的讨论汇总
话题: vs话题: debug话题: program话题: c++话题: main