此浏览器不再受支持。
请升级到 Microsoft Edge 以使用最新的功能、安全更新和技术支持。
应用到函数类型的限定符没有意义;已将其忽略
已将限定符(如 const)应用于 typedef 定义的函数类型。
const
typedef
// C4180.cpp // compile with: /W1 /c typedef int FuncType(void); // the const qualifier cannot be applied to the // function type FuncType const FuncType f; // C4180
此页面是否有帮助?