常見例句The initializer must be an expression. 這個構(gòu)造者必須是一個表達式。The declarator must include an initializer. 聲明者必須包含一個構(gòu)造者。We are using here an object initializer. 我們在這里使用了一個對象構(gòu)造器。The initializer for a "plain" T& must be an lvalue of type T. 就是說,只有確切的類型T才能初始化T&,不能經(jīng)過隱式轉(zhuǎn)換。因此上述代碼會得到一個編譯錯誤:The compile-time type of the initializer expression cannot be the null type. 在編譯時刻構(gòu)造者表達式的類型不能為null類型。For example, the initializer of an enumerator must be a constant expression. 例如,枚舉成員的初始化式必須是常量表達式。 返回 initializer