目录

Function call () Operator 重载

函数调用operator()可以为类类型的对象重载。 当您重载()时,您没有创建一种调用函数的新方法。 相反,您正在创建一个可以传递任意数量参数的运算符函数。

下面的示例解释了函数调用operator()如何重载。

#include <iostream>
using namespace std;
class Distance {
   private:
      int feet;             // 0 to infinite
      int inches;           // 0 to 12
   public:
      // required constructors
      Distance() {
         feet = 0;
         inches = 0;
      }
      Distance(int f, int i) {
         feet = f;
         inches = i;
      }
      // overload function call
      Distance operator()(int a, int b, int c) {
         Distance D;
         // just put random calculation
         D.feet = a + c + 10;
         D.inches = b + c + 100 ;
         return D;
      }
      // method to display distance
      void displayDistance() {
         cout << "F: " << feet << " I:" << inches << endl;
      }   
};
int main() {
   Distance D1(11, 10), D2;
   cout << "First Distance : "; 
   D1.displayDistance();
   D2 = D1(10, 10, 10); // invoke operator()
   cout << "Second Distance :"; 
   D2.displayDistance();
   return 0;
}

编译并执行上述代码时,会产生以下结果 -

First Distance : F: 11 I:10
Second Distance :F: 30 I:120
↑回到顶部↑
WIKI教程 @2018