C標準庫參考指南(11)stddef.h

來源:互聯網
上載者:User

11. stddef.h

標頭檔stddef提供了一些標準定義。其中很多定義也會出現在其他標頭檔中。

宏:

NULL

offsetof();

類型:

typedef ptrdiff_t

typedef size_t

typedef wchar_t

11.1. 變數和定義

ptrdiff_t是相減兩個指標的結果。

size_t是無符號整型。

wchar_t是一個具有寬字元常量大小的整型.

NULL是null 指標常量值。

offsetof(type, member-designator)

他會產生一個size_t類型的整型常量結果,它是結構的開始處的成員的位移量(位元組為單位)。member-designator指定成員,type指定結構名。

執行個體:

#include<stddef.h>   #include<stdio.h>   int main(void)   {     struct user{        char name[50];        char alias[50];        int level;     };     printf("level is the %d byte in the user structure.\n"),             offsetof(struct user,level));   }

輸出結果:

level is the 100 byte in the user structure.

英文原文:http://www.acm.uiuc.edu/webmonkeys/book/c_guide/2.11.html

原文作者:Eric Huss

中文譯者:柳驚鴻 Poechant

著作權聲明:本文的原文著作權歸Eric Huss所有,中文譯文著作權歸Poechant所有。轉載請註明來自"柳大的CSDN部落格":http://blog.csdn.net/poechant

相關文章

聯繫我們

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