使用的非標準延伸模組:float long
備註
預設Microsoft延伸模組 (/Ze) 會將 float 視為 long。double ANSI 兼容性 (/Za) 沒有。 使用 double 來維護相容性。
Example
下列範例會產生 C4216:
// C4216.cpp
// compile with: /W1
float long a; // C4216
// use the line below to resolve the warning
// double a;
int main() {
}