gpt4 book ai didi

c++ - 向 std::vector 添加运算符

转载 作者:行者123 更新时间:2023-11-30 03:52:29 26 4
gpt4 key购买 nike

我正在尝试向 std::vector 添加一个运算符以识别 2 个 vector 何时大致相同。我该怎么做?

template<typename T> //only numeric types
class ImperciseVector: public std::vector<T> {
public:
ImperciseVector() {} //is this constructor needed?
bool operator~ (const ImperciseVector& v) {
T l1sq=0.0, l2sq=0.0, l3sq=0.0;

if ((*this).size() != v.size() || (*this).size==0 || v.size()==0) return false;
for (int j = 0; j<(*this).size(); j++) {
l1sq += (*this)[j]*(*this)[j];
l2sq += v[j]*v[j];
l3sq+= ((*this)[j]-v[j])*((*this)[j]-v[j]);
}
//some estimate such that length of their their difference (relative to their size) is small enough
if (l3sq/(l1sq*l2sq) <= 0.00001) return true;
return false;
}
};

它不起作用,甚至在我编写运算符时都无法识别什么是 ment。如何正确或更好地做到这一点?

最佳答案

operator~()是一个一元运算符。它的用法只能是~iv , 不是 iv1 ~ iv2 .最好简单地编写一个名为 approx() 的成员函数。或重载 operator==在这种情况下(确实有意义,对吗?两个 ImpreciseVector 如果它们近似相等,则它们相等?)

旁注,没有ImpreciseVector<T>继承自 vector<T> .请改用组合。

关于c++ - 向 std::vector<T> 添加运算符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30686640/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com