c++中函數看成對象來傳遞,相似c#中的指針操做如:ios
#include <iostream> using namespace std; int tst(int a){ cout<<a<<endl; return 5; } //類型 +(* +變量名)(+ 函數須要參數) void BigTest(int (* test)(int a)){ int c= test(5); } int main() { //傳遞進來同樣的函數 BigTest(tst); }