首页
新闻
小组
威客
人才
下载
博客
代码贴
在线编程
论坛
注册
|
登录
代码贴
→
丁琪的代码贴
→
全部
[C++]实现一个类层次用来管理数组,基类表示一维数组,派生类表示多维数组。基类intArray用一维数组来存储整数:各位帮我看一下这个代码有什么问题,实在是找不出来了,谢谢啊
#include<iostream>
using namespace std;
const int MaxArry=10000;
class intArray{
protected: int ar[MaxArry];
int n;
public: intArry(){
ar[0]=0;
n=0;
}
intArry(int n){
......................
阅读全部
| 2011年11月22日 04:56
1
丁琪
全部(1)
C++(1)