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

2021-05-02 13:29

阅读:521

标签: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 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


评论


亲,登录后才可以留言!