Chinaunix首页 | 论坛 | 博客
  • 博客访问: 117155
  • 博文数量: 24
  • 博客积分: 1411
  • 博客等级: 上尉
  • 技术积分: 261
  • 用 户 组: 普通用户
  • 注册时间: 2009-08-07 17:49
文章分类

全部博文(24)

文章存档

2009年(24)

我的朋友

分类: C/C++

2009-08-07 17:56:27

// 替换unsigned int中的某一指定byte


#include<iostream>

using namespace std;

unsigned replace_byte(unsigned x, int i, unsigned char b)
{
cout << hex << (unsigned)b << endl;
unsigned ub = (unsigned)b;
unsigned ubp = ub << i*8;
unsigned mask = ~(0xff << i*8);

return (unsigned)((x&mask) | ubp);
}

int main()
{
cout << "0x" << hex << replace_byte(0x12345678, 2, 0xAB);
return 0;
}

阅读(1039) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~