函式指標使用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++智慧指標中的reset成員函式C++指標函式
- C++ 成員函式指標簡單測試C++函式指標
- C++:類的成員函式C++函式
- c++ 類的函式引用 指標C++函式指標
- 如何使用函式指標呼叫類中的函式和普通函式函式指標
- c++ 函式指標C++函式指標
- C++(函式指標)C++函式指標
- C++中函式指標與函式物件C++函式指標物件
- 指標函式 和 函式指標指標函式
- c++ const 成員函式C++函式
- 深入C++成員函式及虛擬函式表C++函式
- C++ 返回函式指標的函式C++函式指標
- 【不在混淆的C】指標函式、函式指標、回撥函式指標函式
- 函式指標函式指標
- 函式指標&回撥函式Callback函式指標
- C++ 類成員指標C++指標
- 類內的靜態成員函式函式
- typedef void (*Fun) (void) 的理解——函式指標——typedef函式指標函式指標
- 基類指標,子類指標,虛擬函式,override與final指標函式IDE
- C語言函式指標與回撥函式使用方法C語言函式指標
- 引入const成員函式函式
- 函式指標基礎函式指標
- 關於函式指標函式指標
- C++(常量成員函式)C++函式
- 函式指標的重要用途——回撥函式函式指標
- OpenCV(cv::Mat 類的成員函式 ptr<T>())OpenCV函式
- C++ 中的 const 物件與 const 成員函式C++物件函式
- C++特殊成員函式及其生成機制C++函式
- 類成員函式作為map容器的value使用例項函式
- C++程式的函式指標:實操來了C++函式指標
- C++定義函式指標,回撥C#C++函式指標C#
- C語言函式指標與回撥用函式C語言函式指標
- cpp:"函式指標"的方法函式指標
- Rust中的函式指標Rust函式指標
- C語言 函式指標C語言函式指標