- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我刚从 Java 和 Python 世界来到 C++ 世界,在尝试从类的公共(public) 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; }
};
最终,我希望将clusterPointArray
中的所有clusterPoint
写入文件。但是,现在我只是用第一个 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)
获取值时我做错了什么吗?
最佳答案
尝试改变这个
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 循环内的代码可能永远不会执行。
希望对您有所帮助,拉兹万。
关于c++ - 无法从 C++ 中的类获取值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19275520/
这个问题在这里已经有了答案: final keyword in method parameters [duplicate] (9 个回答) 关闭 8 年前。 在此示例中,声明 Object fina
我的目标:是通过我的函数更新字段获取选定值并使用函数输出值运行它。 问题:当我从列表中选择值时,它不会触发函数,也不会更新字段。 感谢您的帮助。 HTML 12 14 16 18 20 22 24
我有一本具有这种形式的字典: myDict = {'foo': bar, 'foobar baz': qux} 现在,我想拆分字典键中的空格,使其成为下一个键并获取值(重复)。 myDictRev1
vector a; vector b; int temp_holder; cout > temp_holder) a.push_back(temp_holder); cout > temp_h
Java 的开发过程中免不了与 Date 类型纠缠,准备总结一下项目经常使用的日期相关操作,JDK 版本 1.7,如果能够帮助大家节约那么几分钟起身活动一下,去泡杯咖啡,便是极好的,嘿嘿。当然,我
我正在使用 jquery ui 日期选择器来获取 fromDate 和 toDate 以下是from日期的代码 $("#from_date").datepicker({
我是一名优秀的程序员,十分优秀!