我希望在相同的上下文中或在函数外部跳转到一行。我有一个" test.c"
1
2 #include<stdio.h>
3 void fa(int c)
4 {
5 printf("begin\n");/*I break here*/
6 printf("%d\n",c); /*I wish to jump 1 line here*/
7 }
8 void fb(){}
9
10 int main(){
11 int b=1;
12 int i=2;
13 fa('a');
14 fb(); /*I also want to jump here*/
15 return 0;
16 }
然后使用gcc test.c -g
对其进行编译,并使用gdb a.out
运行它。
gdb a.out
GNU gdb (Ubuntu 7.11.1-0ubuntu1~16.04) 7.11.1
...
(gdb) b 5
Breakpoint 1 at 0x400571: file test.c, line 5.
(gdb) r
Starting program: /home/Troskyvs/a.out
Breakpoint 1, fa (c=97) at test.c:5
5 printf("begin\n");
(gdb) j 6
Continuing at 0x40057b.
97 # This line is odd!
[Inferior 1 (process 6583) exited normally]
(gdb) f
No stack. # Why it doesn't print line 6 source code
(gdb) j 14
The program is not being run.
# What happen here?
我也试过&#34;跳+ 1&#34;并且&#34;跳跃+ 14&#34;。同样的结果,不起作用。
&#34;跳跃&#34;可以按我的方式工作吗?
答案 0 :(得分:2)
嗯,它正在做你要求它做的事情。它
self.names().split(",");
self.names.split(",");
,打印值(97)。 See here to know why the value is 97
printf("%d\n",c);
所以,你的程序已经 over 了。它不再运行了。
FWIW,如果你想停止/中断正常执行 ,你必须在跳转目的地之后设置多个断点以使其等待。