共用方式為


編譯器錯誤 C3554

'decltype' 無法和任何其他型別規範結合

您不能限制 decltype() 關鍵字搭配任何類型規範。 例如,下列程式碼片段會產生錯誤 C3554。

int x;
unsigned decltype(x); // C3554