此浏览器不再受支持。
请升级到 Microsoft Edge 以使用最新的功能、安全更新和技术支持。
请勿使用 C 样式转换。
C++ Core Guidelines Type.4。
void function(const int* const_i) { int* nonconst_i = (int*)const_i; // C26493 Don't use C-style casts int i = (int)*const_i; // C26493 Don't use C-style casts }
此页面是否有帮助?