编辑:动机
假设我将Handler类定义为
class Handler { public: class Message { /*...*/ }; typedef int (*Callback)(Message *msg); void registerCallback(int msgclass,Callback f); };
客户可以做到
int f1(Handler::Message *msg) { /* handle message */ } int f2(Handler::Message *msg) { /* handle message */ } int main(){ Handler h; h.registerCallback(1,f1); h.registerCallback(2,f2); // .... }
编译器确实会检查f1和f2是否适合作为registerCallback的参数,但是,由客户端来正确定义f1和f2.由于我已经完成了typedefed Callback,我希望客户能够使用它.
结束编辑
我想做这样的事情:
typedef int arithmetic(int i,int j); arithmetic sum { return i+j; } arithmetic max { return (i>j)? i:j; } // etc.
但是,两者都有
arithmetic sum arithmetic sum()
不编译,也是这个
arithmetic sum(int i,int j)
这给了编译器错误
func.cpp:4: error: ‘sum’ declared as
function returning a function