gpt4 book ai didi

c++ - `for_each` 没有像我预期的那样工作

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

我正在尝试函数式编程的一些功能,并尝试为 vector 中的每个对象调用一个成员函数。到目前为止,这是我的代码。

emplace.cc

#include <iostream>
#include <vector>
#include <string>
#include <functional>

class Person {
public:
Person(std::string name, size_t age) : _name(name), _age(age) { std::cout << "Hello, " << getName() << std::endl; }
~Person() { std::cout << "Goodbye, "<< getName() << std::endl; }
void greet() { std::cout << getName() << " says hello!" << std::endl; }
std::string getName() const { return _name; }
private:
std::string _name;
size_t _age;

};

int main()
{
std::vector<Person> myVector;
myVector.emplace_back("Hello", 21);
myVector.emplace_back("World", 20);

std::for_each(myVector.begin(), myVector.end(), std::bind1st(std::mem_fun(&Person::greet), this));
return 0;
}

这段代码很可能存在问题,但令我感到奇怪的是我收到的两条错误消息。

emplace.cc:24:4: error: 'for_each' is not a member of 'std'
std::for_each(myVector.begin(), myVector.end(), std::bind1st(std::mem_fun(&Person::greet), this));
^
emplace.cc:24:95: error: invalid use of 'this' in non-member function
std::for_each(myVector.begin(), myVector.end(), std::bind1st(std::mem_fun(&Person::greet), this));
^

我正在使用 GCC 5.2.0 使用 -std=c++14 进行编译。

最佳答案

for_each<algorithm>

你可以做到

for_each(myVector.begin(), myVector.end(), [&] (const decltype(myVector.front())& a) { a.greet(); });

关于c++ - `for_each` 没有像我预期的那样工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32170248/

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