0
我正在嘗試爲隊列開發模板類並獲取錯誤error C3265: cannot declare a managed 'items' in an unmanaged 'TQueue<T>'
。根據我的理解,我不能在非託管「班級」中管理類型。我的代碼如下:在模板中保存T的數組<T>類
#pragma once
template<class T> class TQueue
{
private:
array<T>^ items;
int currentIndex;
int count;
public:
TQueue();
void Enqueue(T toAdd);
T Dequeue();
GetCount() {return currentIndex;}
};
我將如何去在我的隊列持有<T>
類型的數組?
由於提前, Ĵ
您可能要解決問題的標題 – Leeor
良好的通話,對不起! – JohnW