我有以下课程:
class clsUnitArrayIndexToUnitID : public CBaseStructure
{
private:
std::vector<int> m_content;
long m_size;
protected:
void ProcessTxtLine(string line);
public:
clsUnitArrayIndexToUnitID();
std::vector<int>* Content;
long Size();
};
我想从类外部访问值,例如:
int iUnitID = m_MyClass.Content()[12];
但是,C++ 告诉我需要使用指向函数类型。我不确定这到底是什么意思。
另外,如果有人发现我的代码有任何缺陷,请告诉我。