Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设我break my_func在 gdb 中设置了一个断点,然后键入run. gdb 执行代码,直到遇到断点。但是当我run再次击中时会发生什么?
break my_func
run
gdb 会继续进入断点代码,还是会跳过断点,还是会从第 1 行重新启动代码?
但是当我再次点击运行时会发生什么?
程序重新启动。
如果要“越过断点”并继续执行,请使用continue命令。
continue