1 Star 0 Fork 0

EdwardWXR/C++_fromZeroToOne

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
class_in_class.cpp 196 Bytes
一键复制 编辑 原始数据 按行查看 历史
EdwardWXR 提交于 2021-12-17 23:13 . learn a little cpp
#include <iostream>
using namespace std;
class A
{
public:
A() { cout << "A" << endl; }
};
class B
{
private:
A a;
public:
B() { cout << "B" << endl; }
};
int main()
{
B b;
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/edwardwxr/CPPfromZeroToOne.git
[email protected]:edwardwxr/CPPfromZeroToOne.git
edwardwxr
CPPfromZeroToOne
C++_fromZeroToOne
master

搜索帮助