当前位置: 代码迷 >> 综合 >> vs2017 调试代码
  详细解决方案

vs2017 调试代码

热度:51   发布时间:2023-12-12 04:41:57.0

Ctrl+F5 运行代码
F9 添加断点
F10 执行断点的下一条语句
Shift+F9 查看变量地址和值

// txj.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。
//#include "pch.h"
#include <iostream>
using namespace std;
int main()
{
    //范围for语句int x[]{
     1,2,3,4,50 };//数组初始化/*for (auto a : x)//把xl里的每个值拷贝到a中{cout << a << endl;} */for (auto &a : x)//省略了拷贝动作{
    cout << a << endl;}cout << "-----------"<< endl;for (auto a: {
     1,2,3,4,50 }){
    cout << a << endl;}// std::cout << "Hello World!\n"; 
}// 运行程序: Ctrl + F5 或调试 >“开始执行(不调试)”菜单
// 调试程序: F5 或调试 >“开始调试”菜单

在这里插入图片描述

  相关解决方案