C語言 學習之 —— xxx_t 資料類型uint8_t是什麼資料類型

來源:互聯網
上載者:User

uint8_t是什麼資料類型

在C的擴充語言中,你會看到很多你不認識的資料類型,比如uint8_t,in_addr_t等。但這些並不是新的資料類型。

_t的意思到底表示什麼。

它就是一個結構的標註,可以理解為type/typedef的縮寫,表示它是通過typedef定義的,而不是其它資料類型。
uint8_t,uint16_t,uint32_t等,只是使用typedef給類型起的別名。typedef它對於你代碼的維護會有很好的作用。比如C中沒有bool,一些程式員使用int,一些程式員使用short,會比較混亂,最好就是用一個typedef來定義,如:
typedef char bool;

一般整形對應的*_t類型為
1位元組 uint8_t
2位元組 uint16_t
4位元組 uint32_t
8位元組 uint64_t

標頭檔內定義

 typedef signed char int8_t;
 typedef unsigned char uint8_t;

 typedef int int16_t;
 typedef unsigned int uint16_t;

 typedef long int32_t;
 typedef unsigned long uint32_t;

 typedef long long int64_t;
 typedef unsigned long long uint64_t;

 typedef int16_t intptr_t;
 typedef uint16_t uintptr_t;

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.