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

全部博文(24)

文章存档

2009年(24)

我的朋友

分类: C/C++

2009-08-07 17:57:01

// 要注意一定要用unsigned char*, 否则直接用char*的话,变成int 时会做有符号扩展。


#include <iostream>
#include <iomanip>

using namespace std;

void show_bytes(unsigned char* c, int length)
{
unsigned char* a = c;
for(int i = 0; i < length; i++ )
    cout << setw(2) << setfill('0') << hex << (int)a[i]; // 此处做无符号扩展

}

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