共用方式為


警告 C26465

請勿使用 const_cast 來轉換 constconst_cast 不需要;此轉換不會移除常度或波動性。

另請參閱

C++ 核心指導方針類型.3

範例

void function(int* const constPtrToInt)
{
  auto p = const_cast<int*>(constPtrToInt); // C26465, const is not being removed
}