码迷,mamicode.com
首页 > 编程语言 > 详细

C++第四十七篇 -- VS2017带参数启动调试程序

时间:2020-06-28 16:49:26      阅读:98      评论:0      收藏:0      [点我收藏+]

标签:VS2017   ref   code   and   click   href   png   name   close   

参考链接:https://www.cnblogs.com/kileyi/p/10163269.html

举例:Test_Bluetooth.exe -help

Test_Bluetooth.cpp

技术图片
#include "pch.h"
#include <iostream>
using namespace std;

void help() {
    cout << "help" << endl;
}

int main(int argc, char* argv[])
{
    if (argc == 2) {
        if (strcmp(argv[1], "-help") == 0) {
            help();
        }
    }
    else {
        cout << "Hello World!\n";
    }
}
View Code

工具是TestBluetooth.exe,参数是-help,功能是在控制台打印help。

默认执行程序不带任何参数,会在控制台打印Hello World!。若想带上参数-help,需要在工程属性中设置。

右击项目名称 --》属性 --》 Debugging --》Command Arguments里面填入-help。

技术图片

 

C++第四十七篇 -- VS2017带参数启动调试程序

标签:VS2017   ref   code   and   click   href   png   name   close   

原文地址:https://www.cnblogs.com/smart-zihan/p/13203639.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!