• SystemInfo获取计算机相关信息


    // SystemInfo.cpp : 定义控制台应用程序的入口点。
    //

    #include "stdafx.h"
    #include <iostream>
    #include <windows.h>
    #include <iomanip>
    using namespace std;
    int main()
    {
    SYSTEM_INFO systemInfo;
    GetSystemInfo(&systemInfo);
    cout << setw(20) << "处理器掩码: " << systemInfo.dwActiveProcessorMask << endl
    << setw(20) << "处理器个数: " << systemInfo.dwNumberOfProcessors << endl
    << setw(20) << "处理器分页大小: " << systemInfo.dwPageSize << endl
    << setw(20) << "处理器类型: " << systemInfo.dwProcessorType << endl
    << setw(20) << "最大寻址单元: " << systemInfo.lpMaximumApplicationAddress << endl
    << setw(20) << "最小寻址单元: " << systemInfo.lpMinimumApplicationAddress << endl
    << setw(20) << "处理器等级: " << systemInfo.wProcessorLevel << endl
    << setw(20) << "处理器版本: " << systemInfo.wProcessorRevision << endl;
    return 0;
    }

  • 相关阅读:
    log输出到日志和控制台
    CRM--搜索功能
    CRM--对数据进行排序
    CRM-注意的小事情
    CRM--modelform之instance
    CRM--保留原搜索条件
    crm系统
    Django多个app情况下静态文件的配置
    测试
    题库
  • 原文地址:https://www.cnblogs.com/lsh123/p/6294336.html
Copyright © 2020-2023  润新知