码迷,mamicode.com
首页 > 其他好文 > 详细

sizeof

时间:2016-04-02 21:34:11      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:

#include <iostream>

using namespace std;

struct A
{
    long a1;
    short a2;
    int a3;
    int *a4;
};

int main()
{
    A temp;
    cout << sizeof(temp) << endl;
    cout << sizeof(temp.a1) << endl;
    cout << sizeof(temp.a2) << endl;
    cout << sizeof(temp.a3) << endl;
    cout << sizeof(temp.a4) << endl;

    return 0;
}

技术分享

sizeof

标签:

原文地址:http://www.cnblogs.com/xuyan505/p/5348339.html

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