网站别人做的上面有方正字体,蘑菇街的网站建设,网站初期推广,平面设计岗位职责#include iostream
#include string.h
using namespace std;class Students05{
public:// 只有非静态成员变量才算存储空间#xff0c;其他都不算int s_a; // 非静态成员变量#xff0c;算对象的存储空间double s_c;// 成员函数 不算对象的存储空间void f…#include iostream
#include string.h
using namespace std;class Students05{
public:// 只有非静态成员变量才算存储空间其他都不算int s_a; // 非静态成员变量算对象的存储空间double s_c;// 成员函数 不算对象的存储空间void fun1(){}// 静态成员变量不算对象的存储空间static int s_b;// 静态成员函数不算对象的存储空间static void fun2(){}};int Students05::s_b 20;int main()
{// 空类占一字节空间Students05 stu1;cout sizeof: sizeof(stu1) endl;return 0;
}