我在 Visual Studio 2012 中使用函数对象时遇到问题。
我创建了一个简单的std::vector
,添加了ints
0-9 并想使用函数对象创建它的总和。我的类定义(内联):
template <class T>
class Sum {
private:
T val;
public:
Sum (T i = 0) : val(i) {
}
void operator()(T x) {
val += x;
}
T result() const {
return val;
}
~Sum() {
std::cout << "Invoked destructor! val: " << val << " for this: " << this << std::endl;
}
};
我的主要功能:
int main(int argc, char *argv[]){
Sum<int> s;
int contents[] = {1,2,3,4,5,6,7,8,9};
std::vector<int> vec = std::vector<int>(contents, contents + 9);
std::for_each(vec.begin(), vec.end(), s);
std::cout << "Sum of all numbers: " << s.result() << std::endl;
return 0;
}
使用析构函数的输出,我会得到:
Invoked destructor! val: 45 for this: 003BFDA4
Invoked destructor! val: 45 for this: 003BFDE0
Sum of all numbers: 0
Invoked destructor! val: 0 for this: 003BFEFC
这是VS的错误吗?使用调试器运行它,项目被汇总,45
但随后立即调用析构函数。我究竟做错了什么?
编辑:
这是 Stroustrup 的The C++ Programming Language
第 18.4 章中的一个示例。我只是想知道它不起作用,因为我完全复制了它。