Skip to content

Latest commit

 

History

History
54 lines (32 loc) · 2.88 KB

walkthrough-debugging-a-project-cpp.md

File metadata and controls

54 lines (32 loc) · 2.88 KB
description title ms.date helpviewer_keywords ms.assetid
Learn more about: Walkthrough: Debugging a Project (C++)
Walkthrough: Debugging a Project (C++)
04/25/2019
projects [C++], debugging
project debugging [C++]
debugging projects
a5cade77-ba51-4b03-a7a0-6897e3cd6a59

Walkthrough: Debugging a Project (C++)

In this walkthrough, you modify the program to fix the problem that you found when you tested the project.

Prerequisites

To fix a program that has a bug

  1. To see what occurs when a Cardgame object is destroyed, view the destructor for the Cardgame class.

    On the menu bar, choose View > Class View.

    In the Class View window, expand the Game project tree and select the Cardgame class to display the class members and methods.

    Open the shortcut menu for the ~Cardgame(void) destructor and then choose Go To Definition.

  2. To decrease the totalParticipants when a Cardgame ends, add the following code between the opening and closing braces of the Cardgame::~Cardgame destructor.

    [!code-cppNVC_Walkthrough_Debugging_A_Project#110]

  3. The Cardgame.cpp file should resemble the code below after you change it:

    [!code-cppNVC_Walkthrough_Debugging_A_Project#111]

  4. On the menu bar, choose Build > Build Solution.

  5. When the build completes, run it in Debug mode by choosing Debug > Start Debugging on the menu bar, or by choosing the F5 key. The program pauses at the first breakpoint.

  6. To step through the program, on the menu bar, choose Debug > Step Over, or choose the F10 key.

    Notice that after each Cardgame constructor executes, the value of totalParticipants increases. When the PlayGames function returns, as each Cardgame instance goes out of scope and is deleted (and the destructor is called), totalParticipants decreases. Just before the return statement is executed, totalParticipants equals 0.

  7. Continue stepping through the program until it exits, or let it run by choosing Debug > Run on the menu bar, or by choosing the F5 key.

Next Steps

Previous: Walkthrough: Testing a Project (C++)
Next: Walkthrough: Deploying Your Program (C++)

See also

C++ Language Reference
Projects and build systems