だから...あなたは参照の配列を行うことはできませんが、参照、ポインター、および値を処理するコレクションを構築できますか?
Collection<Integer32*> a;
Collection<Integer32&> b;
Collection<Integer32> c;
これが私が遭遇している問題です:
template <class ItemType> class Collection
{
public:
Collection(ItemType array[]); // or ItemType*, doesnt matter
protected:
ItemType* innerArray;
};
コンパイラは、参照へのポインタはありませんと言っています...可能ですか?