最近学习pcl,学习C++,今天让main的参数接收数据,想起没用过这样的,不知道怎么在vs里面调试
因此找了下方法,并记录下来
代码
#include<iostream> int main(int argc, char** argv) { std::cout << "参数数量为:"<<argc<<std::endl; for (int i = 0; i < argc; i++) { std::cout << argv[i] << std::endl; } system("pause"); return 0; }
右键项目—》属性—》调试—》命令参数
运行结果
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/20342.html