我们可以在GDB中使用没有断点的步骤吗?

发布于 2024-12-07 19:33:43 字数 376 浏览 0 评论 0原文

首先,感谢您迄今为止提供的所有帮助。

在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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

落叶缤纷 2024-12-14 19:33:43

是的,您可以使用 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.

在你怀里撒娇 2024-12-14 19:33:43

您可以在 main 中放置一个断点,然后使用 next 逐行执行。 VS 隐式地做到了这一点。

You can put a breakpoint in main and then step line by line using next. VS does that implicitly.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文