共用方式為


指向函式運算子

下列範例適用於 Visual C++。NET 2003 中所指定的標準:

// operator_that_is_pointer_to_function.cpp
// function style call on object will invoke user-defined conversion 
// if there is one. See secion 13.3.1.1.2 
typedef void(*ptf)();
void func()
{
}
struct S
{
   operator ptf()
   {
      return func;
   }
};

int main()
{
   S s;
   s();//operates as s.operator ptf()()
}

請參閱

其他資源

Visual C++。NET 2003 編譯器增強的一致性