84669 personnes étudient
152542 personnes étudient
20005 personnes étudient
5487 personnes étudient
7821 personnes étudient
359900 personnes étudient
3350 personnes étudient
180660 personnes étudient
48569 personnes étudient
18603 personnes étudient
40936 personnes étudient
1549 personnes étudient
1183 personnes étudient
32909 personnes étudient
如题。定义一个内置类型比如int型的智能指针可以 shared_ptr<int>这样定义,但不知道如何定义一个指向函数的智能指针。
光阴似箭催人老,日月如移越少年。
#include <stdio.h> #include <memory> typedef void (*Fn)(void); void Foo() { printf("hello world"); } int main() { std::shared_ptr<Fn> ptr(new Fn(Foo)); (*ptr)(); return 0; }
PS: C++11里面有function, 所以一般不用函数指针
PS: C++11里面有function, 所以一般不用函数指针