VS code在mac os系统中使用的是lldb来debug,而在Linux里面debug用的是gdb来debug的。
VS code debug C++ Mac 这个等级的debug的过程,首先如果你曾经做过很多次的操作还是不明白launch.json Tasks.json c_cpp_properties.json他们三个的关系,那么你可能很难搞明白,自己到底为啥要debug,VS code的debug到底是为了啥???
C++代码段::::
#include <iostream>
#include <string>
int main(){
using namespace std;
cout << "chenxin" << endl;
cout << "jingjing" << endl;
cout << "******************" << endl;
cout <<