If I write the code like this:
auto n = 2048 * 2048 * 5;
char* buf = new char[n];
So, Is auto
deduction type safe from the integer overflow in C++17?
If I write the code like this:
auto n = 2048 * 2048 * 5;
char* buf = new char[n];
So, Is auto
deduction type safe from the integer overflow in C++17?
Copyright © 2021 Jogjafile Inc.
2048
and5
in C++ have a type, and that type isint
. Multiplying twoint
's has a type and that type isint
. There are values for which the result cannot fit in anint
, andauto
cannot prevent that.What
auto
can prevent is accidentally narrowing the result, e.g.: