0

我刚从 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; }
};

最终,我希望将所有sclusterPoint写入clusterPointArray文件中。但是,现在我只是用第一个测试它 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)吗?

4

2 回答 2

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 循环内的代码可能永远不会执行。

希望这会有所帮助,拉兹万。

于 2013-10-09T15:00:14.313 回答
0
outFile << it->GetCoordinate(0);
于 2013-10-09T15:01:45.850 回答