このブラウザーはサポートされなくなりました。
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 }
このページはお役に立ちましたか?