我们可以在GDB中使用没有断点的步骤吗?
首先,感谢您迄今为止提供的所有帮助。
在Visual Studio中,我们可以进行Debug ->单步执行而不设置任何断点。在GDB中,似乎我们必须使用断点。
int main ()
{
int a = 10;
int b = 111;
return 0;
}
我的目标是找到每个变量的地址(例如 int a,int b)。我想知道a和b赋值之前和之后的值。
如果我们在此源代码上编译并运行 gdb,程序将终止,并且我们没有办法跟踪堆栈。
那么有没有一种方法可以像我们在 VS 中那样在 GDB 中一次执行一个语句呢?
谢谢。 (没有断点,不能使用 cout....没有观察者..)
First, thank you for all the helps so far.
In Visual Studio, we can do Debug -> Step In without setting any breakpoints. In GDB, it seems like we HAVE to use breakpoints.
int main ()
{
int a = 10;
int b = 111;
return 0;
}
My goal is to find the addresses of each variable (say int a, int b). I want to know the values before and after the assignment of a and b.
If we compile and run gdb on this source code, the program will terminate, and we don't have a way to trace the stack.
So is there a way to step one single statement at a time in GDB like we do in VS?
Thanks.
(no breakpoint, cannot use cout....no watchers..)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,您可以使用 step (s) 命令介入。首先,您启动程序(而不是使用运行),因此它会在开始时停止。
Yes, you can step in with step (s) command. First you start the program (as opposed to using run), so it would stop at the beginning.
您可以在 main 中放置一个断点,然后使用
next
逐行执行。 VS 隐式地做到了这一点。You can put a breakpoint in main and then step line by line using
next
. VS does that implicitly.