代码拉取完成,页面将自动刷新
#include<iostream>
using namespace std;
//class A
//{
//public:
// int a;
// int size;
//};
//int main()
//{
// A a1;
// a1.a = 10;
// a1.size = 20;
// A a2;
// a2.a = 20;
// cout << a1.a << endl;
// cout << a2.a << endl;
// return 0;
//}
//class A
//{
//public:
// void func()
// {}
//private:
// char _c;
//};
//int main()
//{
// cout <<"A:"<< sizeof(A) << endl;
// return 0;
//}
//class A
//{
//public:
// void func()
// {}
//};
//class A1
//{
//public:
//};
//int main()
//{
// cout << sizeof(A) << endl;
// cout << sizeof(A1) << endl;
// return 0;
//}
//class A
//{
//public:
// void func()
// {}
//private:
// char _c;
//};
//int main()
//{
// A::func();
// return 0;
//}
//class Date
//{
//public:
// void Init(int year, int month, int day)
// {
// _year = year;
// _month = month;
// _day = day;
// }
// void Print()
// {
// cout << this << endl;
// cout << _year << "-" << _month << "-" << _day << endl;
// }
//private:
// int _year; // 年
// int _month; // 月
// int _day; // 日
//};
//int main()
//{
// Date d1, d2;
// d1.Init(2022, 1, 11);
// d2.Init(2022, 1, 12);
// d1.Print();
// d2.Print();
// cout << &d1 << endl;
// cout << &d2 << endl;
// return 0;
//}
//class Date
//{
//public:
// //构造函数
// Date(int year = 1, int month = 1, int day = 1)
// {
// _year = year;
// _month = month;
// _day = day;
// }
// Date()
// {
// _year = 1;
// _month = 1;
// _day = 1;
// }
// void Print()
// {
// cout << _year << "-" << _month << "-" << _day << endl;
// }
//private:
// int _year; // 年
// int _month; // 月
// int _day; // 日
//};
//int main()
//{
// Date d1;
// return 0;
//}
//class Stack
//{
//public:
// Stack(int capacity = 4)
// {
// _a = (int*)malloc(sizeof(int) * capacity);
// if (_a == nullptr)
// {
// printf("malloc fail\n");
// exit(-1);
// }
// _top = 0;
// _capacity = capacity;
// }
// void push(int x)
// {
// _a[_top++] = x;
// }
//private:
// int* _a;
// int _top;
// int _capacity;
//};
//int main()
//{
// Stack st;
// st.push(1);
// st.push(2);
// return 0;
//}
class A
{
public:
void fun()
{}
int _b;
int _c;
};
class Date
{
public:
void Print()
{
cout << _year << "-" << _month << "-" << _day << endl;
}
private:
int _year = 1; // 年
int _month = 2; // 月
int _day = 3; // 日
A _a;
};
int main()
{
Date d1;
return 0;
}
//class Time
//{
//public:
// /*Time()
// {
// cout << "Time()" << endl;
// _hour = 0;
// _minute = 0;
// _second = 0;
// }*/
//private:
// int _hour;
// int _minute;
// int _second;
//};
//class Date
//{
//private:
// // 基本类型(内置类型)
// int _year;
// int _month;
// int _day;
// // 自定义类型
// Time _t;
//};
//int main()
//{
// Date d;
// return 0;
//}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。