禁用所有断点后启用选定的断点 (Visual Studio c++ 2010)
有没有办法暂时禁用所有活动断点,然后仅重新启用那些先前启用的断点。举一个简单的例子,假设我有以下 5 个断点:
1、3、5 已启用 2,4 被禁用
现在我禁用所有断点,稍后,我只想启用 1,3,5。
如果我选择“禁用所有断点”然后“启用所有断点”,那么1、2、3、4、5个断点都会启用吗?
Is there a way to temporarily disable all active breakpoints and then renable only those breakpoints which were previously enabled. To give a quick example, suppose I have the following 5 breakpoints:
1,3,5 are enabled
2,4 are disabled
Now I disable all breakpoints and little later, I want to enable only 1,3,5.
If I choose "Disable all breakpoints" and then "enable all breakpoints", all of 1,2,3,4,5 breakpoints are enabled?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可以按如下方式完成:
Breakpoints
窗口中单击带有蓝色软盘的图标Breakpoints 中
窗口中单击带有蓝色箭头的图标这也将恢复断点的启用/禁用状态。
It can be done as follows:
Breakpoints
window click on the icon with a blue disketteBreakpoints
window click on the icon with a blue arrowThis will restore breakpoints with the enable/disable state as well.