共用方式為


警告 C26493

請勿使用 C 樣式轉換。

另請參閱

C++ 核心指導方針 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
}