我刚从Java和Python世界来到C ++世界,在尝试从类的公共const
函数中获取值时遇到了问题。
我有一个课程如下:
class CMDPoint
{
public:
CMDPoint();
CMDPoint(int nDimensions);
virtual ~CMDPoint();
private:
int m_nDimensions; // the number of dimensions of a point
float* m_coordinate; // the coordinate of a point
public:
const int GetNDimensions() const { return m_nDimensions; }
const float GetCoordinate(int nth) const { return m_coordinate[nth]; }
void SetCoordinate(int nth, float value) { m_coordinate[nth] = value; }
};
最终,我希望将clusterPoint
中clusterPointArray
的{strong>全部写入文件。但是,现在我只是使用第一个 clusterPoint
进行测试(因此,GetCoordinate(0)
)。
ofstream outFile;
outFile.open("C:\\data\\test.txt", std::ofstream::out | std::ofstream::app);
for (std::vector<CMDPoint> ::iterator it = clusterEntry->clusterPointArray.begin(); it != clusterEntry->clusterPointArray.end(); ++it)
{
outFile << ("%f", (*it).GetCoordinate(0)); // fails
outFile << " ";
}
outFile << "\n";
outFile.close();
问题是我只在文件中看到" "
。没有写入坐标。从const float GetCoordinate(int nth)
获取值时,我做错了什么?
答案 0 :(得分:2)
尝试更改此
outFile << ("%f", (*it).GetCoordinate(0)); // fails
到此:
outFile << (*it).GetCoordinate(0); // OK
因为("%f", (*it).GetCoordinate(0))
代表什么都没有,只有,
分隔的表达式枚举。它不会像java中那样被评估为一对对象。
编辑:("%f", (*it).GetCoordinate(0))
实际上评估的是(*it).GetCoordinate(0)
的最后一个元素(PlasmaHH评论),所以它仍然应该打印一些东西。但是,如果没有打印任何内容,则集合clusterEntry->clusterPointArray
可能为空,并且for循环中的代码可能永远不会执行。
希望这有帮助, 勒兹。
答案 1 :(得分:0)
outFile << it->GetCoordinate(0);