gpt4 book ai didi

c++ - 为什么我的仿函数成员变量 "reset"? (c++)

转载 作者:太空狗 更新时间:2023-10-29 23:49:11 25 4
gpt4 key购买 nike

我正在学习如何使用仿函数,所以我创建了一个,但我不明白为什么我的计数器变量在程序结束时为 0。

这里是代码:

#include"stdafx.h"
#include<iostream>
#include<vector>
#include<algorithm>
#include<map>
#include<list>


using namespace std;

class myFunctor {
public:
myFunctor():counter(0) {}
void operator()(int i) { cout << "in the functor: " << i ; counter++; cout << " counter=" << counter << endl; }
int getCounter() const { return counter; }
private:
int counter;
};

int main()
{
vector<int> v{ 1,2,3,4,5,6,7,8,9,10 };
myFunctor f;

for_each(v.begin(), v.end(), f);

cout << "counter=" << f.getCounter() << endl;

return 0;
}

结果如下:

in the functor: 1   counter=1
in the functor: 2 counter=2
in the functor: 3 counter=3
in the functor: 4 counter=4
in the functor: 5 counter=5
in the functor: 6 counter=6
in the functor: 7 counter=7
in the functor: 8 counter=8
in the functor: 9 counter=9
in the functor: 10 counter=10
counter=0

最佳答案

如果您查看 for_each 的签名,您会发现它按值接受仿函数,因此您在 for_each 中看到的更改不会在外部反射(reflect)出来算法终止。

http://en.cppreference.com/w/cpp/algorithm/for_each

template< class InputIt, class UnaryFunction >
UnaryFunction for_each( InputIt first, InputIt last, UnaryFunction f );

如果你想完成这项工作,你将不得不使用 std::ref 来生成一个引用包装器并按值传递它。

std::for_each(vec.begin(), vec.end(), std::ref(functor));

查看 documentation for std::refreference_wrapper 以了解其工作原理和原因(关键是 std::reference_wrapper 有一个 operator() 与仿函数 http://en.cppreference.com/w/cpp/utility/functional/reference_wrapper/operator() 一起工作)。

关于c++ - 为什么我的仿函数成员变量 "reset"? (c++),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45310152/

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