- 1、本文档共10页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
c语言函数sizeof(C language function sizeof)
c语言函数sizeof(C language function sizeof)
Sizeof C language is a unary operator, such as C + + language, other operators -- etc.. It is not a function. The sizeof operator gives the storage size of its operands in bytes. Operands can be either an expression or a type name enclosed in parentheses. The storage size of operands is determined by the type of operand.
Two, sizeof usage
1, for data types
Sizeof uses the form: sizeof (type)
Data types must be enclosed in parentheses. Such as sizeof (int).
2. Used of variables
Sizeof uses the form: sizeof (var_name) or sizeof var_name
Variable names can be enclosed without parentheses. Such as sizeof (var_name), sizeof, var_name and so on are in the correct form. Parentheses are used more widely, and most programmers adopt this form.
Note: the sizeof operator cannot be used for function types, incomplete types, or bit fields. An incomplete type is a data type with an unknown storage size, such as an array type of unknown storage size, the structure of the unknown content, or the union type, the void type, and so on.
If sizeof (max), if the variable Max is defined as int max (), sizeof (char_v), if the char_v is defined as char char_v [MAX] and MAX is unknown at this point, the sizeof (void) is not the correct form.
Three, sizeof results
The result type of the sizeof operator is size_t, which is typedef int type in the header file unsigned. This type is guaranteed to hold the byte size of the established maximum object.
1, if operands have type char, unsigned, char, or signed char, the result is equal to 1.
ANSI C specifies that the character type is 1 bytes.
2, int, unsigned int, short int, unsigned short, long int, unsigned long, float, double, long, double type of sizeof is not specified in the ANSI C, the size depends on the implementation, the general may respectively 2, 2, 2, 2, 4, 4, 4, 8, 10.
3, when operands are pointers, sizeof relies on the compiler. For example, in Microsoft C/C++7.0, the near class pointer byte num
您可能关注的文档
- 10个励志故事(10 inspiring stories).doc
- 10大管理讲解(Top 10 management explanations).doc
- 10年动画谈(10 years animation talk).doc
- 10款海绵蛋糕制作方法(10 sponge cake making method).doc
- 10款海绵蛋糕配方(10 sponge cake recipe).doc
- 10通经力士乐4we10g3x(10 - Rexroth 4we10g3x).doc
- 112佛与魔(112 Buddhas and Demons).doc
- 11、 领袖素质(11, leader quality).doc
- 11个坏习惯竟有益身心(11 bad habits are good for the mind and body).doc
- 11年四月新番动漫列表(11 April - animation list).doc
文档评论(0)