我爲一個項目使用了一箇舊的編譯器(Microsoft Visual C++ 6.0(1998)),我想知道是否有辦法在.c文件的每個函數中自動放置斷點,或者如果有調試或查看代碼的跳轉到下一個聲明函數的快捷方式。Microsoft Visual C++ 6.0中的斷點
謝謝!
我爲一個項目使用了一箇舊的編譯器(Microsoft Visual C++ 6.0(1998)),我想知道是否有辦法在.c文件的每個函數中自動放置斷點,或者如果有調試或查看代碼的跳轉到下一個聲明函數的快捷方式。Microsoft Visual C++ 6.0中的斷點
謝謝!
要設置斷點,請將光標置於所需的位置並按F9鍵(或使用鼠標右鍵|插入/移除斷點)。鍵盤命令的
摘要
F5 Start program execution, run until a breakpoint is reached.
Shift-F5 Stop debugging and return to program edit mode.
Ctrl-Shift-F5 Restart the program in debugging mode.
F9 Insert, disable or remove a breakpoint.
Shift-F9 Get the value of a variable.
F10 Execute the current statement or function call.
Ctrl-F10 Run the program to the point where the cursor is.
F11 If the current statement is a function call, step into the function.
Shift-F11 If executing a function, run to the end and return to the calling statement.
我知道所有的調試基本快捷鍵,我問是否有從函數跳轉到函數的方法,或者在.c文件中的每個函數中自動插入斷點 –
Ctrl + UP或Ctrl +向下? – MAST3RMIND
您可以通過添加一個新的突破點(調試 - >新中斷點),寫類似CMyClass上的特定類的每個功能打破:: *
我想這應該在VS6
工作210
你問的是如何以編程方式做到這一點,或問如何使用IDE? – doctorlove
IDE,我想我記得看到有關如何從一個功能切換到另一個功能的快捷方式? –
我猜想要麼工作 –