C语言实现基本数据类型与字节类型互相转换

C语言实现基本数据类型与字节类型互相转换

在网络编程中,一般通过数据包的方式来传递数据,数据包内存储的是各种数据的表示形式,例如浮点数使用IEEE754标准存储,字符使用字符码存储(例如使用ASCII码)。本篇文章主要讲述了基本数据类型与这些存储格式的相互转换。

数据包如何在实际中使用可以参考->C#数据交互服务器(一)

定义unsigned char Byte为字节类型,使用小端模式存储(如操作系统使用大端这里还是转换成小端方式),基本数据类型大小采用64位标准。

BitConvert.h

#pragma once
#ifndef Byte
#include <stdbool.h>
typedef unsigned char Byte;  //定义字节类型
typedef long long Long;   //定义长整型64位

Byte* Long2Bytes(Long data);
Byte* Int2Bytes(int data);
Byte* Short2Bytes(short data);
Byte* Bool2Bytes(bool data);
Byte* String2Bytes(const char* data, const char* encoding);
Byte* Float2Bytes(float data);
Byte* Double2Bytes(double data);

Long ToInt64(Byte* bytes, unsigned int origin);
int ToInt32(Byte* bytes, unsigned int    origin);
short ToInt16(Byte* bytes, unsigned int origin);
bool ToBool(Byte* bytes, unsigned int origin);
char* ToString(Byte* bytes, unsigned int origin, unsigned int len, const char* encoding);
float ToFloat(Byte* bytes, unsigned int origin);
double ToDouble(Byte* bytes, unsigned int origin);

void Reversal(Byte* bytes, unsigned int origin, unsigned int len);  //存储方式转换(操作系统为大端模式时自动转换)
bool IsBig_Endian();    //是否为大端模式
#endif

BitConvert.c

#pragma once
/*
靠左高位,靠右低位
大端模式和小端模式,例如有short=0x1234,大端模式存储为12 34,小端模式存储为34 12;大端模式更符合人脑思维,小端模式更适合计算机
此处使用小端模式存储数据,Byte范围为0~255,满255进1,例如有int=1234,则byte[0]=214,byte[1]=4
注意:此处没有做溢出检测,无论操作系统使用小端还是大端,这里都将使用小端模式存储
*/

#include "BitConvert.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

Byte * Long2Bytes(Long data)
{
    Byte* bytes = malloc(8);

    bytes[7] = data >> 56;
    bytes[6] = data >> 48;
    bytes[5] = data >> 40;
    bytes[4] = data >> 32;
    bytes[3] = data >> 24;
    bytes[2] = data >> 16;
    bytes[1] = data >> 8;
    bytes[0] = data >> 0;

    if (IsBig_Endian())
    {
        Reversal(bytes, 0, 8);
    }

    return bytes;
}

Byte * Int2Bytes(int data)
{
    Byte* bytes = malloc(4);
    bytes[3] = data >> 24;
    bytes[2] = data >> 16;
    bytes[1] = data >> 8;
    bytes[0] = data >> 0;

    if (IsBig_Endian())
    {
        Reversal(bytes, 0, 4);
    }

    return bytes;
}

Byte * Short2Bytes(short data)
{
    Byte* bytes = malloc(2);
    bytes[1] = data >> 8;
    bytes[0] = data >> 0;

    if (IsBig_Endian())
    {
        Reversal(bytes, 0, 2);
    }

    return bytes;
}

Byte * Bool2Bytes(bool data)
{
    Byte* bytes = malloc(1);
    if (data == true)
    {
        bytes[0] = 1;
    }
    else
    {
        bytes[0] = 0;
    }
    return bytes;
}

Byte * String2Bytes(const char * data,const char * encoding)
{
    size_t len = strlen(data);
    Byte* bytes = malloc(len);
    for (size_t i = 0; i < len; i++)
    {
        bytes[i] = (int)data[i];        //字符转字符码
    }

    return bytes;
}

Byte * Float2Bytes(float data)
{
    Int2Bytes(*(int*)&data);    //(int*)&data为指向data的地址的int指针,前方加*表示该地址存储的内容,即IEE754标准格式数据,此处强制转换部分精度将丢失
}

Byte * Double2Bytes(double data)
{
    Long2Bytes(*(long*)&data);
}


long long ToInt64(Byte * bytes, unsigned int origin)
{
    if (IsBig_Endian())
    {
        Reversal(bytes, origin, 8);
    }

    Long data = ((bytes[origin + 7] & 0xFF) << 56)
        | ((bytes[origin + 6] & 0xFF) << 48)
        | ((bytes[origin + 5] & 0xFF) << 40)
        | ((bytes[origin + 4] & 0xFF) << 32)
        | ((bytes[origin + 3] & 0xFF) << 24)
        | ((bytes[origin + 2] & 0xFF) << 16)
        | ((bytes[origin + 1] & 0xFF) << 8)
        | ((bytes[origin + 0] & 0xFF) << 0);
    return data;
}

int ToInt32(Byte* bytes, unsigned int origin)
{
    if (IsBig_Endian())
    {
        Reversal(bytes, origin, 4);
    }

    int data = ((bytes[origin + 3] & 0xFF) << 24)
        | ((bytes[origin + 2] & 0xFF) << 16)
        | ((bytes[origin + 1] & 0xFF) << 8)
        | ((bytes[origin + 0] & 0xFF) << 0);

    return data;
}

short ToInt16(Byte * bytes, unsigned int origin)
{
    if (IsBig_Endian())
    {
        Reversal(bytes, origin, 2);
    }

    short data = ((bytes[origin + 0] & 0xFF) << 0)
        | ((bytes[origin + 1] & 0xFF) << 8);

    return data;
}

bool ToBool(Byte * bytes, unsigned int origin)
{
    bool data;
    if (bytes[origin] == 1)
    {
        data = true;
    }
    else
    {
        data = false;
    }

    return data;
}

char * ToString(Byte * bytes, unsigned int origin, unsigned int len, const char * encoding)
{
    char* data = malloc(len);
    for (size_t i = 0; i < len; i++)
    {
        data[i] = (char)bytes[origin+i];        //字符码转成字符
    }
    return data;
}

float ToFloat(Byte * bytes, unsigned int origin)
{
    int val = ToInt32(bytes, origin);
    return *(float*)&val;
}

double ToDouble(Byte * bytes, unsigned int origin)
{
    int val = ToInt64(bytes, origin);
    return *(double*)&val;
}


void Reversal(Byte * bytes, unsigned int origin, unsigned int len)
{
    printf("格式转换");

    int end = origin + len;
    for (int i = origin; i < origin + len; i++)
    {
        Byte temp;  //拷贝内存,高低字节数据互换
        memcpy(&temp, &bytes[origin + i], 1);
        memcpy(&bytes[origin+i], &bytes[end-i], 1);
        memcpy(&bytes[end - i], &temp, 1);  
        temp = NULL;
    }
}

bool IsBig_Endian()
{
    unsigned short test = 0x1234;
    if (*((unsigned char*)&test) == 0x12)
    {
        return true;
    }
    else
    {
        return false;
    }
}

测试,program.cpp

#include <iostream>

extern "C"
{
#include "BitConvert.h"
#include <stdio.h>
}

int main()
{
    Byte* a = Int2Bytes(214647);
    std::cout << ToInt32(a, 0) << std::endl;
    free(a);

    Byte* b = Short2Bytes(1234);
    std::cout << ToInt16(b, 0) << std::endl;
    free(b);

    Byte* c = Bool2Bytes(true);
    std::cout << ToBool(c, 0) << std::endl;
    free(c);

    Byte* d = String2Bytes("懂撒课大赛第三", "UTF-8");
    char* str = ToString(d, 0, strlen("懂撒课大赛第三"), "UTF-8");
    std::cout << str << std::endl;
    free(str);
    free(d);

    Byte* e = Long2Bytes(1234567891);
    std::cout << ToInt64(e, 0) << std::endl;
    free(e);

    float f = 123456.1245f;
    Byte* f_bytes = Float2Bytes(f);
    std::cout << ToFloat(f_bytes, 0) << std::endl;

    return 0;
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,928评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,192评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,468评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,186评论 1 286
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,295评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,374评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,403评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,186评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,610评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,906评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,075评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,755评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,393评论 3 320
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,079评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,313评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,934评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,963评论 2 351

推荐阅读更多精彩内容