加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
final_2_2.cpp 603 Bytes
一键复制 编辑 原始数据 按行查看 历史
youch 提交于 2019-10-31 01:22 . ini
#include<stdio.h>
class IntegerArray {
public:
int *m_data;
int m_size;
IntegerArray(int size) {
m_data = new int[size];
m_size = size;
}
// IntegerArray( IntegerArray & op) {
// m_data = new int[op.m_size];
// m_size = op.m_size;
// for( int i = 0; i < m_size; i++ )
// m_data[i] = op.m_data[i];
// }
~IntegerArray() {}
};
int main() {
IntegerArray a(2);
a.m_data[0] = 4; a.m_data[1] = 2;
if (true) {
IntegerArray b = a;
b.m_data[0] = 6;
}
printf("%d\n", a.m_data[0]);
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化