c語言中unsigned類型和普通類型間的轉換

來源:互聯網
上載者:User

  最近在做一個項目的過程中,遇到了協議的加密解密和封裝,其中經常遇到unsigned類型的資料和普通資料類型間轉來轉去,所以經過研究,簡單封裝了幾個函數,在這裡分享給大家,有不足之處還望大家給予指正。

unsigned short unCharToUnShort(unsigned char* pBuf)
{
 unsigned short result = 0;
 result = (short)pBuf[0]*256;
 result += (short)pBuf[1];
 return result;
}

unsigned int unCharToUnInt(unsigned char* pBuf)
{
 unsigned int result = 0;
 result = (short)pBuf[0]*256*256*256;
 result += (short)pBuf[1]*256*256;
 result += (short)pBuf[2]*256;
 result += (short)pBuf[3];
 return result;
}

  以上兩個函數是把unsigned char*轉換為unsigned short或unsigned int,資料的存放方式為高位元組在前,低位元組在後,比如無符號短整型256是0x01 0x00。我們通過依次擷取低位的資料然後乘以0xFF,來擷取低位所代表的整數值,然後再把各個位的值相加,得出最終需要的無符號整形值。其中把一個位元組強轉為short型,就是為了擷取該位元組的無符號整型值,因為一個short值佔兩個字元,我們這樣強轉,其實只用了short高位的那一個位元組。

void unShortToUnChar(unsigned char* pBuf,unsigned short iValue)
{
 pBuf[0] = (unsigned char)(iValue>>8);
 pBuf[1] = (unsigned char)(iValue);
}

void unIntToUnChar(unsigned char* pBuf,unsigned int iValue)
{
 pBuf[0] = (unsigned char)(iValue>>24);
 pBuf[1] = (unsigned char)(iValue>>16);
 pBuf[2] = (unsigned char)(iValue>>8);
 pBuf[3] = (unsigned char)(iValue);
}

  以上兩個函數作用是把無符號整形轉換為unsigned char型。所使用的方式是把整型值右移8的倍數,然後取高位強轉為unsigned char後賦值給我們的unsigned char數組中的各個位元組。

  在做無符號資料類型和有符號資料類型轉換的時候方式有很多,此處介紹的是我覺得比較簡單且易懂的,代碼已在VS和linux下測試通過。大家如果有更好的方式,歡迎跟帖交流,我好對本文章進行更新,方便其它同仁學習。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.