当一个变量等于我设置的某个值时,我喜欢让 GDB 设置一个断点,我试过这个例子:
#include <stdio.h>
main()
{
int i = 0;
for(i=0;i<7;++i)
printf("%d\n", i);
return 0;
}
广东发展银行的产出:
(gdb) break if ((int)i == 5)
No default breakpoint address now.
(gdb) run
Starting program: /home/SIFE/run
0
1
2
3
4
5
6
Program exited normally.
(gdb)
就像你看到的,广发银行没有做出任何突破点,这可能与广发银行?