コードで次のエラーが発生します。私はC++に非常に錆びていますが、何が間違っているのかわかりません。
エラーメッセージ:
Error: Field has incompatible type 'int []'
コード:
template<typename Comparable> class OrderedCollection
{
private:
Comparable data[]; //ERROR CAUSED BY THIS LINE
int _size;
int _current;
const int MAX_SIZE = 100;