![]() |
#2
aipb20072007-05-14 12:05
|
#include <iostream>
using namespace std;
class WWW
{public:
WWW(int a,int b):x(a),y(b){}
private:
const int x,y; // x y是静态的,可变的,怎样才能实现呢?
int m[x][y];
};