[合集] 谁能知道这是为什么?C++问题# Programming - 葵花宝典
c*d
1 楼
☆─────────────────────────────────────☆
qlnus (dd) 于 (Sat Aug 11 23:45:27 2007) 提到:
下面的这段代码,编译没有问题,但是在运行时会报错,但如果把注释的语句加上,这
不会报错了。
#include
#include
using namespace std;
template
class Array
{
private: T a[N];
public:
T& operator[](int k)
{ assert( 0 <= k && k <= N);
return a[k];
}
const T& operator[](int k)const
{ assert( 0 <= k && k <= N);
return a[k];
}
};
int main()
{
cout << "Part 1, Exercise 5:" << endl;
Array
qlnus (dd) 于 (Sat Aug 11 23:45:27 2007) 提到:
下面的这段代码,编译没有问题,但是在运行时会报错,但如果把注释的语句加上,这
不会报错了。
#include
#include
using namespace std;
template
class Array
{
private: T a[N];
public:
T& operator[](int k)
{ assert( 0 <= k && k <= N);
return a[k];
}
const T& operator[](int k)const
{ assert( 0 <= k && k <= N);
return a[k];
}
};
int main()
{
cout << "Part 1, Exercise 5:" << endl;
Array