码迷,mamicode.com
首页 > 编程语言 > 详细

C语言中的sizeof函数总结

时间:2018-03-06 23:27:07      阅读:338      评论:0      收藏:0      [点我收藏+]

标签:参数   get   blog   指针   body   总结   span   text   展开   

sizeof函数的结果:

  1. 变量:变量所占的字节数。
    int i = 0;
    printf("%d\n", sizeof(i));    //4
  2. 数组:数组所占的字节数。
    int  arr_int1[] = {1,2,3,4,5};
    int  arr_int2[10] = {1,2,3,4,5};
    printf("size_arr1=%d\n",sizeof(arr_int1)); //5*4=20        
    printf("size_arr2=%d\n",sizeof(arr_int2)); //10*4=40
  3. 字符串:其实就是加了‘\0‘的字符数组。结果为字符串字符长度+1。
    char str[] = "str";
    printf("size_str=%d\n",sizeof(str));    //3+1=4
  4. 指针:固定长度:4(32位地址环境)。
    • 特殊说明:数组作为函数的入口参数时,在函数中对数组sizeof,获得的结果固定为4:因为传入的参数是一个指针。
      int Get_Size(int arr[]) {
          return sizeof(arr);
      }
      
      int main() {
          int  arr_int[10] = {1,2,3,4,5};
          printf("size_fun_arr=%d\n",Get_Size(arr_int));    //4
      }
  5. 结构体
    1. 只含变量的结构体:
      1. 结果是最宽变量所占字节数的整数倍:[4 1 x x x]
        typedef struct test {
            int i;
            char ch;
        }test_t;
        printf("size_test=%d\n", sizeof(test_t));    //8
      2. 几个宽度较小的变量可以填充在一个宽度范围内:[4 2 1 1]
        typedef struct test {
            int i;
            short s;
            char ch1;
            char ch2;
        }test_t;
        printf("size_test=%d\n", sizeof(test_t));    //8
      3. 地址对齐:结构体成员的偏移量必须是其自身宽度的整数倍:[4 1 x 2 1 x x x]
        typedef struct test {
            int i;
            char ch1;
            short s;
            char ch2;
        }test_t;
        printf("size_test=%d\n", sizeof(test_t));    //12
    2. 含数组的结构体:包含整个数组的宽度。数组宽度上文已详述。[4*10 2 1 1]
      typedef struct test {
          int i[10];
          short s;
          char ch1;
          char ch2;
      }test_t;
      printf("size_test=%d\n", sizeof(test_t));    //44
    3. 嵌套结构体的结构体
      1. 包含整个内部结构体的宽度(即整个展开的内部结构体):[4 4 4]
        typedef struct son {
            int name;
            int birthday;
            }son_t;
            
        typedef struct father {
            son_t  s1;
            int wife;
        }father_t;
        
        printf("size_struct=%d\n",sizeof(father_t));    //12
      2. 地址对齐:被展开的内部结构体的首个成员的偏移量,必须是被展开的内部结构体中最宽变量所占字节的整数倍:[2 x x 2 x x 4 4 4]
        typedef struct son {
            short age;
            int name;
            int birthday;
            }son_t;
            
        typedef struct father {
            short age;
            son_t  s1;
            int wife;
        }father_t;
        
        printf("size_struct=%d\n",sizeof(father_t));    //20

C语言中的sizeof函数总结

标签:参数   get   blog   指针   body   总结   span   text   展开   

原文地址:https://www.cnblogs.com/cage666/p/8519364.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!