如何声明一个作为类成员的函数并返回指向线程的函数指针?
Posted
技术标签:
【中文标题】如何声明一个作为类成员的函数并返回指向线程的函数指针?【英文标题】:how to declare a function which is member of a class and returns a function pointer to a thread? 【发布时间】:2009-08-28 05:24:14 【问题描述】:我想写一个函数(比如foo
),它接受字符串作为参数并返回一个函数指针,但是这个指针指向下面的函数:
DWORD WINAPI fThread1(LPVOID lparam)
此外,函数 (foo
) 是类的成员,因此我将定义它并在单独的文件(.hpp
和 .cpp
文件)中声明它。
请帮助我了解声明语法。
【问题讨论】:
【参考方案1】:最简单的方法是对函数指针使用 typedef:
typedef DWORD (WINAPI *ThreadProc)(LPVOID);
class MyClass
public:
ThreadProc foo(const std::string & x);
;
...
ThreadProc MyClass::foo(const std::string & x)
// return a pointer to an appropriate function
或者,如果您出于某种原因不想使用 typedef,您可以这样做:
class MyClass
public:
DWORD (WINAPI *foo(const std::string & x))(LPVOID);
;
...
DWORD (WINAPI *MyClass::foo(const std::string & x))(LPVOID)
// return a pointer to an appropriate function
语法相当难看,所以我强烈建议使用 typedef。
【讨论】:
【参考方案2】:我想这就是你想要的:
class Bob
public:
typedef DWORD (__stdcall *ThreadEntryPoint)(LPVOID lparam);
ThreadEntryPoint GetEntryPoint(const std::string& str)
// ...
;
我从winbase.h中找到了ThreadEntryPoint
的定义,那里叫PTHREAD_START_ROUTINE
。
ThreadEntryPoint
是一个函数指针,指向具有您显示的签名的函数,GetEntryPoint
返回指向此类函数的指针。
【讨论】:
【参考方案3】:检查 cmets 是否理解:
//Put this in a header file
class Foo
public:
//A understandable name for the function pointer
typedef DWORD (*ThreadFunction)(LPVOID);
//Return the function pointer for the given name
ThreadFunction getFunction(const std::string& name);
;
//Put this in a cpp file
//Define two functions with same signature
DWORD fun1(LPVOID v)
return 0;
DWORD fun2(LPVOID v)
return 0;
Foo::ThreadFunction Foo::getFunction(const std::string& name)
if(name == "1")
//Return the address of the required function
return &fun1;
else
return &fun2;
int main()
//Get the required function pointer
Foo f;
Foo::ThreadFunction fptr = f.getFunction("1");
//Invoke the function
(*fptr)(NULL);
【讨论】:
以上是关于如何声明一个作为类成员的函数并返回指向线程的函数指针?的主要内容,如果未能解决你的问题,请参考以下文章