struct AAA {
char* myTraceProc(ClientData clientData, Tcl_Interp* interp, const char* name1, const char* name2, int flags) {
return NULL;
}
};
int main(int argc, char* argv[]) {
Tcl_FindExecutable(argv[0]);
Tcl_Interp* interp = Tcl_CreateInterp();
AAA obj;
boost::function<char*(ClientData, Tcl_Interp*, const char*, const char*, int)> f = boost::bind(&AAA::myTraceProc, &obj, _1, _2, _3, _4, _5);
Tcl_TraceVar(interp, "database", TCL_TRACE_WRITES, f, 0);
return 0;
}
在这段代码中,我试图将AAA::myTraceProc
传递给Tcl_TraceVar
,它接受一个具有相同接口的函数指针,但是我收到了这个错误。
错误:无法将boost :: function转换为char *()(void ,Tcl_Interp *,const 参数4到int的char *,const char *,int) Tcl_TraceVar(Tcl_Interp *,const char *,int,char *()(void , Tcl_Interp *,const char *,const char *,int),void *)
我认为绑定部分有问题。你能纠正一下吗?
答案 0 :(得分:3)
错误告诉您究竟出了什么问题:您无法将boost::function
转换为普通函数指针。你必须写一个非成员函数并传递一个指向它的指针;如果将指向该对象的指针作为客户端数据传递,它可以在对象上调用成员函数。