c++中使用指針調用函數和使用指針調用類對象的()重載函數


使用函數指針時,指針可以像函數名一樣,直接加括號和參數列表調用;也可先解引用再調用

 1 1 //include directories...
 2  2 using namespace std;
 3  3 void testFun()
 4  4 {
 5  5     cout<<"this is a test"<<endl;
 6  6 }
 7  7 int main(int argc,char**argv)
 8  8 {
 9  9     auto *pFun=testFun;
10 10     pFun();//or (*pFun)() is also fine   
11 11 }

但是使用類指針時不可以

 1 1 //header files...
 2  2 using namespace std;
 3  3 class A
 4  4 {
 5  5 private:
 6  6     int a;
 7  7 public:
 8  8     A(int a_):a(a_){}
 9  9     void operator(){cout<<a<<endl;}
10 10 };
11 11 int main(int argc,char** argv)
12 12 {
13 13     A a1(5);
14 14     A *pA=new A(7);
15 15     a1();//correct using operator() function
16 16     (*pA)();//pA() is not correct
17 17 }

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM