CPlusPlusThings/basic_content/sizeof/genA.cpp

28 lines
472 B
C++
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* @file genA.cpp
* @brief
* 普通成员函数大小为1,一个类中,虚函数本身、成员函数(包括静态与非静态)和静态数据成员都是不占用类对象的存储空间。
* @author 光城
* @version v1
* @date 2019-07-21
*/
#include <iostream>
using namespace std;
class A {
public:
A();
~A();
static int a;
static void fun3();
void fun();
void fun1();
};
int main() {
cout << sizeof(A) << endl; // 1
return 0;
}