1. 程式人生 > >c++ ()括號操作符的過載

c++ ()括號操作符的過載

  1. #include <iostream>
  2. usingnamespace std;  
  3. class Clastype  
  4. {  
  5. public:  
  6.         Clastype(int a)  
  7.         {  
  8.             cout << "Hello Clastype!" << a << endl;  
  9.         }  
  10. bool operator ()(int b)  
  11.         {  
  12.             cout << "Hello Clastype()!" << b << endl;  
  13. returntrue;  
  14.         }  
  15. };  
  16. int main()  
  17. {  
  18.     Clastype a(1);  
  19.     Clastype(2);  
  20.     Clastype t = Clastype(3);  
  21.     t(4);  
  22.     Clastype *b = new Clastype(5);  
  23.     (*b)(6);  
  24. }  
  1. @-desktop:~/test$ g++ -o o 6.cpp  
  2. @-desktop:~/test$ ./o  
  3. Hello Clastype!1  
  4. Hello Clastype!2  
  5. Hello Clastype!3  
  6. Hello Clastype()!4  
  7. Hello Clastype!5  
  8. Hello Clastype()!6  
括號操作符的使用為物件加上()操作符。類名直接加()操作符為物件的建立。