最近在看CEGUI 可是进度很慢
不知道大家有什么好的方法可以和我分享下,\(^o^)/~
CEGUI事件系统:
typedef bool (SlotFunction)(const EventArgs&);
SlotFunction* d_fun;
typedef bool (*SlotFunction)(const EventArgs&);都可以
SlotFunction d_fun;
普通函数指针(eg:)
typedef int (*pFun)(int, int) 对的
typedef int (Fun)(int , int )也是对的
类的成员函数指针:
typedef int (T::*memberFun)(int, int)对的
typedef int (T::memberFun)(int, int)错的,因为会被认为是普通函数指针
调用也必须是 T* pObj; (pObj->*memberFun)(a, b); 这个*号是必须的