gpt4 book ai didi

c++ - 如何将 CString 转换为 BYTE?

转载 作者:行者123 更新时间:2023-11-30 04:02:47 25 4
gpt4 key购买 nike

我的程序中有包含 BYTE 信息的 CString,如下所示:

L"0x45"

我想将其转换为值为 0x45 的 BYTE 类型。我该怎么做呢?我能找到的所有示例都试图获取字符串本身的文字字节值,但我想获取 CString 中包含的值并将其转换为 BYTE。我如何实现这一目标?

最佳答案

您可以使用 wcstoul() 转换函数,指定基数 16。

例如:

#define UNICODE
#define _UNICODE
#include <stdlib.h> // for wcstoul()
#include <iostream> // for console output
#include <atlstr.h> // for CString

int main()
{
CString str = L"0x45";

static const int kBase = 16; // Convert using base 16 (hex)
unsigned long ul = wcstoul(str, nullptr, kBase);
BYTE b = static_cast<BYTE>(ul);

std::cout << static_cast<unsigned long>(b) << std::endl;
}
C:\Temp>cl /EHsc /W4 /nologo test.cpp

输出:

69

作为替代方案,您还可以考虑使用新的 C++11 的 std::stoi() :

#define UNICODE
#define _UNICODE
#include <iostream> // for console output
#include <string> // for std::stoi()
#include <atlstr.h> // for CString

int main()
{
CString str = L"0x45";

static const int kBase = 16; // Convert using base 16 (hex)
int n = std::stoi(str.GetString(), nullptr, kBase);
BYTE b = static_cast<BYTE>(n);

std::cout << static_cast<unsigned long>(b) << std::endl;
}

注意
在这种情况下,因为 std::stoi()期望一个 const std::wstring&参数,您必须显式获取 const wchar_t* CString 的指针例如,使用 CString::GetString()像我一样(我更喜欢),或者使用 static_cast<const wchar_t*>(str) .
然后,临时 std::wstring将被构建以传递给 std::stoi()用于转换。

关于c++ - 如何将 CString 转换为 BYTE?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24891340/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com