1

プロジェクトに古いコンパイラ (Microsoft Visual C++ 6.0 (1998)) を使用しています。.c ファイルのすべての関数にブレークポイントを自動的に配置する方法があるかどうか、または、.c ファイルにジャンプするためのショートカットがあるかどうか疑問に思っていました。コードをデバッグしたり調べたりする場合は、次に宣言された関数。

ありがとう!

4

2 に答える 2

0

新しいブレーク ポイントを追加し ([デバッグ] -> [新しいブレーク ポイント])、CMyClass::* のようなものを記述することで、特定のクラスのすべての関数を中断できます。

関連記事: http://blogs.msdn.com/b/habibh/archive/2009/09/10/class-breakpoint-how-to-set-a-breakpoint-on-ac-class-in-the-visual -studio-debugger.aspx

これはVS6で動作するはずだと思います

于 2013-07-03T12:46:39.937 に答える
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.
于 2013-07-03T12:35:30.043 に答える