1. 关键词

关键词:

C++ 程序 32位 64位 跨平台

实现原理:

根据指针地址的位数来判断程序是32位还是64位。

2. sysutil.h

#pragma once

#include <cstdint>
#include <string>

namespace cutl
{
    /**
     * @brief Get the program bit.
     *
     * @return uint16_t the program bit.
     */
    uint16_t program_bit();
} // namespace cutl

3. sysutil.cpp


#include <map>
#include <iostream>
#include <strutil.h>
#include <cstdlib>
#include "sysutil.h"
#include "inner/logger.h"
#include "inner/system_util.h"
#include "inner/filesystem.h"

namespace cutl
{
    uint16_t program_bit()
    {
        int a = 0;
        auto byte = sizeof(&a);
        return byte * 8;
    }
} // namespace cutl

4. 测试代码

#include "common.hpp"
#include "sysutil.h"

void TestProgramBit()
{
    PrintSubTitle("TestProgramBit");

    std::cout << "program bit: x" << cutl::program_bit() << std::endl;
}

5. 运行结果

-------------------------------------------TestProgramBit-------------------------------------------
program bit: x64

6. 源码地址

更多详细代码,请查看本人写的C++ 通用工具库: common_util, 本项目已开源,代码简洁,且有详细的文档和Demo。

本文由博客一文多发平台 OpenWrite 发布!

陌尘
6 声望6 粉丝

花名(网名): 陌尘