摘要:
FUN2.h // // Created by Administrator on 2026/3/23. // #ifndef CMD_FUN2_H #define CMD_FUN2_H #include <stdio.h> class FUN2 { public: int testFun2(); } 阅读全文
摘要:
7.1 disable<断点编号>(禁用断点(保留但不触发)) (gdb) disable 6 (gdb) i b Num Type Disp Enb Address What 4 breakpoint keep y 0x0000555555555458 in main(int, char**) a 阅读全文
摘要:
6.1 delete<断点编号>(删除指定断点) (gdb) i b Num Type Disp Enb Address What 1 breakpoint keep y 0x0000000000001597 in main(int, char**) at main.cpp:46 2 breakpo 阅读全文
摘要:
5.1 info breakpoints(查看所有断点信息) (gdb) i b Num Type Disp Enb Address What 4 breakpoint keep y 0x0000555555555458 in main(int, char**) at main.cpp:36 5 b 阅读全文
摘要:
4.1 rb<模糊函数名> (gdb) rb testFun Breakpoint 1 at 0x1aa8: file FUN2.cpp, line 8. int FUN2::testFun2(); Breakpoint 2 at 0x17ac: file main.cpp, line 12. vo 阅读全文