gpt4 book ai didi

c++ - C++将类方法作为函数指针传递

转载 作者:行者123 更新时间:2023-12-02 09:49:35 25 4
gpt4 key购买 nike

我有一个必须处理各种文件中的数据的类。我考虑过创建一个函数,该函数将读取指定的文件,然后接受回叫,以便它可以使用该函数来处理行。下面是一个示例类,代表我想要做的事情:

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


class Example
{
std::vector<std::string> m_exampleFileData {
"test1",
"test2",
"test3"
};

public:

void doSomethingMain(const std::string& path)
{
processFile(path, doSomething);
}


private:
void processFile(const std::string& filePath, void (Example::*fpProcessLine)(const std::string&) )
{
for (const auto& line : m_exampleFileData) {
this->*fpProcessLine(line);
}
}

void doSomething(const std::string& line)
{
std::cout << "Hello: " << line << '\n';
}

};


int main(int argc, char** argv) {
const std::string filePath{"path"};
Example ex;

ex.doSomethingMain(filePath);
}

编译器资源管理器: https://godbolt.org/z/LKoXSZ

主要的问题是,无论我做什么,我似乎都无法正确地将该函数传递给 processFile。有没有办法在C++中做到这一点?我该怎么办?

最佳答案

在这种情况下,您需要明确说明:

    processFile(path, &Example::doSomething);

此外,由于运算符的优先级,您还需要附加一对括号:
         (this->*fpProcessLine)(line);

关于c++ - C++将类方法作为函数指针传递,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61306493/

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