【debug】vscode配置c/c++环境及查看调试信息m1 mac

之前用的一直是clion 但是经过反复调整,发现始终查看不了vector里面的数值(只有指针地址),改用常用的vscode后调试成功

  • 安装
  1. 安装vscode 以及vscode中的扩展安装
    c/c++,c/c++ extension pack,cmake,cmake tools,code runner,codeLLDB
  2. 打开一个cpp文件,点击运行旁边的小箭头,选择run code,出现调试配置,选择g+±13生成活动文件,会生成tasks.json
  3. 点击调试,选择debug(lldb),会生成launch.json
  4. 扩展中找到code runner点击设置,找到run in terminal,在whether to run code in integrated terminal前打勾,(从而解决cpp运行和调试中无法在终端进行输入的问题)
  • 运行测试

    打开一个cpp文件,点击运行旁边的小箭头,选择run code

  • debug调试测试

    带vector的测试代码如下:

cpp 复制代码
#include<iostream>
#include<stdio.h>
#include<iostream>
#include<map>
#include<vector>
#include<algorithm>
using namespace std;
bool cmp(pair<int,double> a,pair<int,double> b){
 return a.first>b.first;
}
int main(){
 map<int,double> poly;
 map<int,double> ans_poly;
 int m,n,ex;
 double co;

  cin>>n;
  for(int i=0;i<n;i++){
   cin>>ex>>co;
   poly[ex]=co;
  }
 cin>>m;
 for(int i=0;i<m;i++){
   cin>>ex>>co;
  
   for(auto p=poly.begin();p!=poly.end();p++ ){
    int new_ex=(*p).first+ex;
    ans_poly[new_ex]+=((*p).second*co);
    //cout<<(*p).second<<" "<<co<<" "<<(*p).second*co<<endl;
   }
 }
  

 vector<pair<int,double> > ans(ans_poly.begin(),ans_poly.end());
 sort(ans.begin(),ans.end(),cmp);
 int cnt=0;
 for(auto it=ans.begin();it!=ans.end();it++){
  if((*it).second)
   cnt++;
 }
 cout<<cnt;
  for(auto it=ans.begin();it!=ans.end();it++){
   if((*it).second)
    printf(" %d %.1lf",(*it).first,(*it).second);
  
 }
 return 0;
}
cpp 复制代码
输入:
2 1 2.4 0 3.2
2 2 1.5 1 0.5

输出:(自行验证是否正确)
3 3 3.6 2 6.0 1 1.6

点击运行和调试,选择debug,在第41行前打红色断点,点击绿色箭头开始调试,

同样的在终端输入上述的输入参数,

可以看到vector中的值了

相关推荐
湖南罗泽南13 分钟前
Windows C++ TCP/IP 两台电脑上互相传输字符串数据
c++·windows·tcp/ip
五味香13 分钟前
Linux学习,ip 命令
linux·服务器·c语言·开发语言·git·学习·tcp/ip
可均可可1 小时前
C++之OpenCV入门到提高005:005 图像操作
c++·图像处理·opencv·图像操作
zyx没烦恼1 小时前
【STL】set,multiset,map,multimap的介绍以及使用
开发语言·c++
lb36363636361 小时前
整数储存形式(c基础)
c语言·开发语言
机器视觉知识推荐、就业指导1 小时前
基于Qt/C++与OpenCV库 实现基于海康相机的图像采集和显示系统(工程源码可联系博主索要)
c++·qt·opencv
浪里个浪的10241 小时前
【C语言】从3x5矩阵计算前三行平均值并扩展到4x5矩阵
c语言·开发语言·矩阵
<但凡.1 小时前
编程之路,从0开始:知识补充篇
c语言·数据结构·算法
Eiceblue2 小时前
通过Python 调整Excel行高、列宽
开发语言·vscode·python·pycharm·excel
i_阿文2 小时前
如何在vscode 中打开新文件不覆盖上一个窗口
ide·vscode·编辑器