函式指標使用c++類成員函式
使用一些C的庫時,需要讓類的成員函式對接C的回撥函式指標。
以pthread為例,利用類裡的一個靜態函式作為pthread_create的引數,將類的this指標傳給這個靜態函式,然後就可以想幹什麼幹什麼了。
以pthread為例,利用類裡的一個靜態函式作為pthread_create的引數,將類的this指標傳給這個靜態函式,然後就可以想幹什麼幹什麼了。
點選(此處)摺疊或開啟
-
template <typename A, typename R>
-
class thr: public boost::noncopyable
-
{
-
private:
-
typedef A arg_t;
-
typedef R res_t;
-
typedef pthread_t tid_t;
-
typedef boost::function func_t;
-
thr(){}
-
tid_t _tid;
-
arg_t _arg;
-
res_t _res;
-
func_t _func;
-
-
static void* _thread_func(void* arg)
-
{
-
((thr*)arg)->func();
-
return NULL;
-
}
-
public:
-
explicit thr(func_t func, arg_t arg): _func(func), _arg(arg){}
-
~thr(){}
-
tid_t get_tid() {return _tid;}
-
arg_t get_arg() {return _arg;}
-
res_t get_result() {return _res;}
-
void set_arg(arg_t arg) {_arg = arg;}
-
void set_result(res_t res){_res = res;}
-
-
void func() {_res = _func(_arg);}
-
int run() {return pthread_create(&_tid, NULL, _thread_func, this);}
-
int join()
-
{
-
void* p;
-
return pthread_join(_tid, &p);
-
}
-
};
-
-
class test
-
{
-
public:
-
char* f(int i)
-
{
-
char* s = new char[10];
-
sprintf(s, "%d", i);
-
return s;
-
}
-
};
-
-
int main()
-
{
-
test te;
-
thr th(boost::bind(&test::f, te, _1), 123);
-
th.run();
-
th.join();
-
-
char* s = th.get_result();
-
cout << th.get_result() << endl;
-
delete[] s;
-
return 0;
- }
上面為了方便用了boost::function。使得整個類和boost::thread功能有點重複。
如果不想用boost,可以想下面這樣,用繼承的方式。
class thr
{
protected:
pthread_t _tid;
static void* _thread_func(void* arg) {return ((thr*)arg)->_func();}
virtual void* _func() = 0;
thr(const thr& o){}
public:
thr(){}
~thr(){}
int start_thread()
{
int re = pthread_create(&_tid, NULL, _thread_func, this);
if(re != 0) return re;
}
int join_thread()
{
void* p;
if(pthread_join(_tid, &p) != 0) return -1;
cout << (*(int*)p) << endl;
return 0;
}
};
class test: public thr
{
private:
int _i;
void* _func()
{
cout << "thread begin" << endl;
return &_i;
}
public:
test(int i):_i(i){}
};
int main()
{
test te(10);
te.start_thread();
te.join_thread();
return 0;
}
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/26239116/viewspace-2123701/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- [C++] 成員函式指標和函式指標C++函式指標
- 如何使用成員函式指標函式指標
- 淺談C++指標直接呼叫類成員函式C++指標函式
- C++ 類成員函式C++函式
- C++ 成員資料指標成員函式指標簡單測試C++指標函式
- c++智慧指標中的reset成員函式C++指標函式
- C++ 成員函式指標簡單測試C++函式指標
- C++:類的成員函式C++函式
- c++ 類的函式引用 指標C++函式指標
- c++ 函式指標C++函式指標
- C++(函式指標)C++函式指標
- 如何使用函式指標呼叫類中的函式和普通函式函式指標
- 指標函式 和 函式指標指標函式
- C++中函式指標與函式物件C++函式指標物件
- 為什麼 C++ 中成員函式指標是 16 位元組?C++函式指標
- 函式名/函式地址/函式指標函式指標
- 深入C++成員函式及虛擬函式表C++函式
- C++函式指標詳解C++函式指標
- c++ const 成員函式C++函式
- c++類别範本成員函式報錯C++函式
- 宣告與函式、函式指標函式指標
- 【不在混淆的C】指標函式、函式指標、回撥函式指標函式
- 函式指標函式指標
- C++中的函式指標和函式物件總結C++函式指標物件
- C++ 類成員指標C++指標
- 函式指標&回撥函式Callback函式指標
- c++中string類成員函式的總結C++函式
- C/C++——指向函式的指標和指向函式的指標的陣列C++函式指標陣列
- 成員變數/函式指標的用法 (轉)變數函式指標
- 函式指標呼叫函式指標
- 類內的靜態成員函式函式
- 詳解C/C++函式指標宣告C++函式指標
- 關於函式指標函式指標
- 指向函式的指標函式指標
- 函式指標基礎函式指標
- C語言函式指標與回撥函式使用方法C語言函式指標
- C/C++—— 寫一個函式,它的引數為指向函式的指標,返回型別也為指向函式的指標C++函式指標型別
- C++ 返回函式指標的函式C++函式指標