char*cstr 转 ushort

本文介绍了一段C++代码,展示了如何将接收到的四个十六进制字符逐个转换为无符号短整型(USHORT)。hexCharToInt 函数用于实现字符到十进制的转换,cstr_to_ushort 函数则应用于实际字符串处理。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

废话不多说,直接上代码

#include <iostream>
#include <Windows.h>
using namespace std;

int hexCharToInt(char c)
{
	if (c >= '0' && c <= '9') return (c - '0');
	if (c >= 'A' && c <= 'F') return (c - 'A' + 10);
	if (c >= 'a' && c <= 'f') return (c - 'a' + 10);
	return 0;
}

void cstr_to_ushort(char* cstr, USHORT& str_ushort)
{
	for (int i = 0; i < 4; i++) {
		char tmp;		
		strncpy(&tmp, &cstr[i], 1);
		cout << "tmp = " << tmp << endl;
		int ai = hexCharToInt(tmp);
		str_ushort = str_ushort | ai << (12 - 4 * i);
		cout << str_ushort << endl;
	}
}

int main()
{
	char a[5] = "04F3";
	USHORT us = 0;
	cstr_to_ushort(a, us);
	printf("%x", us);

	int res = getchar();
	return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值