Teclas de atalho, o Visual C++ 2.0 de depurar a opção de atalho padrão
Use as seguintes combinações de teclas de atalho ao depurar seu código.
Observação |
---|
A aparência dos recursos no IDE pode depender das suas configurações ativas ou edição e pode diferir das descritas na Ajuda. Para alterar as configurações, escolha Import and Export Settings sobre o Ferramentas menu. For more information, see Trabalhando com configurações. |
Nome do comando |
Shortcut keys |
Description |
---|---|---|
Debug.ApplyCodeChanges |
ALT + F10 |
Aplica as alterações feitas em código sem interromper o modo de depuração. |
Debug.Breakpoints |
CTRL + B |
Exibe o pontos de interrupção janela. See Usando pontos de interrupção e Tracepoints for more information. |
Debug.CallStack |
ALT + 6 CTRL + K |
Displays the Call Stack window to display a list of all active procedures or stack frames for the current thread of execution. Disponível somente no modo de execução. See Como: Use a janela Call Stack for more information. |
Debug.Disassembly |
ALT + 7 |
Exibe o Disassembly janela. See Como: Usar a janela Disassembly for more information. |
Debug.EnableBreakpoint |
CTRL + SHIFT + F9 |
Permite que o ponto de interrupção na linha atual. |
Debug.Locals |
ALT + 3 |
Displays the Locals window to view the variables and their values for each procedure in the current stack frame. |
Debug.Memory1 |
ALT + 5 |
Exibe o Memory 1 janela para exibir grandes buffers, seqüências e outros dados que não são exibidos com clareza na janela Watch ou Variables. |
Debug.QuickWatch |
SHIFT + F9 |
Exibe o QuickWatch caixa de diálogo com o valor atual da expressão selecionada. Disponível somente no modo de interrupção. Use this command to check the current value of a variable, property, or other expression for which you have not defined a watch expression. |
Debug.Registers |
ALT + 4 |
Exibe o registra janela, que exibe registra o conteúdo para a depuração de aplicativos de código nativo. See Como: Use a janela Registers for more information. |
Debug.Restart |
SHIFT + F5 |
Finaliza uma sessão de depuração, recria e começa a executar a aplicação do início novamente. Disponível nos modos de execução e de quebra. |
Debug.RunToCursor |
F7 |
No modo de interrupção, reinicia a execução do código da instrução atual para a instrução selecionada. The Current Line of Execution margin indicator appears in the Margin Indicator bar. |
Debug.SetNextStatement |
CTRL + SHIFT + F7 |
Sets the execution point to the line of code you choose. |
Debug.ShowNextStatement |
ALT + NUM * |
Highlights the next statement to be executed. |
Debug.Start |
F5 |
Automatically attaches the debugger and runs the application from the startup form specified in the <Project> Properties dialog box. Altera para Continue se estiver no modo de interrupção. |
Debug.StartWithoutDebugging |
CTRL + F5 |
Runs the code without invoking the debugger. |
Debug.StepInto |
F8 |
Executes code one statement at a time, following execution into function calls. |
Debug.StepOut |
SHIFT + F7 |
Executes the remaining lines of a function in which the current execution point lies. |
Debug.StepOver |
F10 |
Executa a próxima linha de código, mas não segue a execução por meio de quaisquer chamadas de função. |
Debug.StopDebugging |
ALT + F5 |
Interrompe a execução do aplicativo atual do programa. Disponível nos modos de execução e de quebra. |
Debug.ToggleBreakpoint |
F9 |
Sets or removes a breakpoint at the current line. |
Debug.ToggleDisassembly |
CTRL + F7 |
Displays the disassembly information for the current source file. Disponível somente no modo de interrupção. |
Consulte também
Tarefas
Como: Trabalhar com atalhos de teclado
Conceitos
Atalhos de teclado predefinidos