A.ClassX::operator Type(Type t){… return Type_Value;} B.friendClassX::operator Type(){… return Type_Value;} C.Type ClassX::operator Type(){…return Type_Value;} D.ClassX::operator Type(){… return Type_Value;}
A.该类类型到参数类型 B.参数类型到该类类型 C.参数类型到基本类型 D.类类型到基本类型
A.构造函数 B.析构函数 C.成员函数 D.友员函数