wlsk888 2022-05-25 21:47 采纳率: 90.9%
浏览 47
已结题

c++ 如何根据系统定义全局常量字符串?

类似在程序开头定义
if(iswin7)
{
string str="112233445566";
}
if(iswin10)
{
string str="665544332211";
}
然后可以在函数中使用
vold abc()
{
cout<<str<<endl;
}

  • 写回答

1条回答 默认 最新

  • 赵4老师 2022-05-26 13:51
    关注
    
    // 获取Windows准确的版本号,不依赖于 manifest 文件,也不受兼容性的影响。
    #include <string.h>
    #include <stdio.h>
    #include <windows.h>
    #include <lm.h>
    #include <string>
    #include <iostream>
    #pragma comment(lib, "netapi32.lib")
    char winver[16];
    std::string str=std::string("000000000000");//默认值
    int main() {
        WKSTA_INFO_100 *wkstaInfo = NULL;
        NET_API_STATUS netStatus = NetWkstaGetInfo(NULL, 100, (LPBYTE *)&wkstaInfo);
        if (netStatus == NERR_Success) {
            DWORD dwMajVer = wkstaInfo->wki100_ver_major;
            DWORD dwMinVer = wkstaInfo->wki100_ver_minor;
    //      DWORD dwVersion = (DWORD)MAKELONG(dwMinVer, dwMajVer);
            netStatus = NetApiBufferFree(wkstaInfo);
            sprintf(winver,"%d.%d",dwMajVer,dwMinVer);
        } else {
            sprintf(winver,"unknown");
        }
        if (0==strcmp("10.0",winver)) str=std::string("665544332211");
        if (0==strcmp( "7.0",winver)) str=std::string("112233445566");
        std::cout<<"winver:"<<winver<<std::endl;
        std::cout<<"str:"<<str<<std::endl;
        return 0;
    }
    //winver:10.0
    //str:665544332211
    //
    
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

问题事件

  • 系统已结题 6月3日
  • 已采纳回答 5月26日
  • 创建了问题 5月25日

悬赏问题

  • ¥15 无源定位系统的时差估计误差标准差
  • ¥15 请问这个代码哪里有问题啊
  • ¥20 python--version在命令端输入结果Python is not defined怎么办?还有pip不是exe格式是不是没安装成功?
  • ¥15 通过GaussianView进行结构微调消除虚频
  • ¥15 调用transformers库
  • ¥15 由于导出的数据名字中带有/,导致Matlab打不开,怎么办?
  • ¥15 新硬盘安装的程序总是崩溃,提示遇到错误
  • ¥15 openpcdet自制数据集评估bev精度和3d精度相同
  • ¥15 excel 上下按钮 显示行
  • ¥20 云卓h12pro 数传问题