プロジェクトに古いコンパイラ (Microsoft Visual C++ 6.0 (1998)) を使用しています。.c ファイルのすべての関数にブレークポイントを自動的に配置する方法があるかどうか、または、.c ファイルにジャンプするためのショートカットがあるかどうか疑問に思っていました。コードをデバッグしたり調べたりする場合は、次に宣言された関数。
ありがとう!
プロジェクトに古いコンパイラ (Microsoft Visual C++ 6.0 (1998)) を使用しています。.c ファイルのすべての関数にブレークポイントを自動的に配置する方法があるかどうか、または、.c ファイルにジャンプするためのショートカットがあるかどうか疑問に思っていました。コードをデバッグしたり調べたりする場合は、次に宣言された関数。
ありがとう!
新しいブレーク ポイントを追加し ([デバッグ] -> [新しいブレーク ポイント])、CMyClass::* のようなものを記述することで、特定のクラスのすべての関数を中断できます。
これはVS6で動作するはずだと思います
ブレークポイントを設定するには、目的の場所にカーソルを置き、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.