Tip2 Qt中判断当前的操作系统

在Qt中可以使用宏定义很方便的判断当前的操作系统类型;

判断是否为Windows

bool SystemInfo::isWindows()
{
#ifdef Q_OS_WINDOWS
    return true;
#else
    return false;
#endif
}

判断是否为win10

bool SystemInfo::isWindows10()
{
    if (isWindows())
    {
        return QSysInfo::productVersion().startsWith("10");
    }

    return false;
}

判断是否为Mac

bool SystemInfo::isMacOS()
{
#ifdef Q_OS_MACOS
    return true;
#else
    return false;
#endif
}
上一篇:Android-Activity启动模式(launchMode)


下一篇:LAB4