操作系统:xp
IDE:VS 2008
在我用 Visual C++ 做的项目中,我已经声明了一个std::vector
内部托管类
std::vector<pts> dataPoints;//this gives error c4368 : mixed type not allowed
但这有效
std::vector<pts> * dataPoints;//a pointer to the vector
然后我在免费商店中创建了这个向量,就像在托管类的构造函数中一样
dataPoints = new std::vector<pts>(noOfElements,pts());//which is not so attractive.
我需要向量的原因是因为我正在读取文件ifstream
并将这些值存储在向量中。
Q1)为什么我能够声明一个指向本机类型对象的指针(我猜)但不是一个对象?此外,在尝试向量之前,我尝试了托管数组
cli::array<Point> dataPoints //and i defined it later.
但是当我这样做时
ifile >> dataPoints[i].X;
它给出了一个错误 c2678:operator= 没有为int
!! 重载。
Q2)为什么我不能在这里使用托管代码。起初我认为它可能是一个包装类 Int 但随后自动拆箱(转换运算符)应该处理它?还是 Point::X 是合格的property
,因此不被认为是正常的int
?我错过了什么?这就是我寻求解决方案的vector
原因pts
。
pts
如下
struct pts
{
int X, int Y;
pts() : X(0),Y(0){}
pts(int x,int y) : X(x),Y(y){}
};//this i created to store the data from the file.