編譯器警告 (層級 1) C4674
'method' 必須宣告為 'static',而且只能有一個參數
轉換運算子的簽章不正確。 此方法不會視為使用者定義的轉換。 如需定義運算子的詳細資訊,請參閱使用者定義運算符(C++/CLI)和使用者定義轉換(C++/CLI)。
範例
下列範例會產生 C4674。
// C4674.cpp
// compile with: /clr /WX /W1 /LD
ref class G {
int op_Implicit(int i) { // C4674
return 0;
}
};