Breakpoint


Breakpoint

A breakpoint is a point in the program where the program will stop to watch and debug its execution. To insert a breakpoint in a Microsoft Visual Studio project, open the solution and then the source file that you would like to debug and click in the left margin of the file as shown in the figure. A big red dot will appear to represent the breakpoint as shown. The breakpoint can be removed by clicking the breakpoint.
Un punto de paro es un punto en el programa donde el programa se detendrá para observar y depurar su ejecución. Para insertar un punto de paro en un proyecto de Microsoft Visual Studio, abra la solución y entonces abra el archivo fuente que desea depurar y haga clic en el margen izquierdo del archivo como se muestra en la figura de abajo. Un punto rojo grande aparecerá para representar el punto de paro. El punto de paro puede removerse si se hace clic en el punto de paro.

Breakpoint

Debug Steps

Once the project or solution is open using Microsoft Visual Studio, use the following steps (the figure below shows the Debug menu with this options):
  1. Set at least one breakpoint in the program by clicking in the left margin of the source file (*.cpp)
  2. Press F5 or from the menu Build->Start Debug
  3. Press F10 (Step Over) to execute the instructions of the program line by line
  4. Press F11 (Step Into) to execute the instructions of a function line by line
  5. Press F5 (Continue) to continue execution line by line in next breakpoint
  6. Press Shift+F11 (Step Out) to skip the debugging of the current function
  7. Press Shift+F5 (Stop Debugging) to stop

Una vez que el proyecto o la solución se ha abierto en Microsoft Visual Studio, use los siguientes pasos (la figura de abajo muestra el menú de depuración con estas opciones):
  1. Agregue al menos un punto de paro en su programa haciendo clic en el margen izquierdo del archivo fuente (*.cpp)
  2. Presione F5 o desde el menú Build->Start Debug
  3. Presione F10 (Step Over) para ejecutar las instrucciones del programa línea por línea
  4. Presione F11 (Step Into) para ejecutar las intrucciones de una función línea por línea
  5. Presione F5 (Continue) para continuar la depuración en el próximo punto de paro
  6. Presione Shift+F11 (Step Out) para abandonar la depuración de una función
  7. Presione Shift+F5 (Stop Debugging) para deterner el proceso de depuración

DebugMenu

© Copyright 2000-2021 Wintempla selo. All Rights Reserved. Jul 22 2021. Home