共用方式為


編譯器錯誤 C2377

'identifier' : 重複定義; typedef 無法以其他符號多載

typedef 識別項已重複定義。

下列範例會產生 C2377:

// C2377.cpp
// compile with: /c
typedef int i;
int i;   // C2377
int j;   // OK