Was it in fact char const* const presets[] = { ... };,
initialized with string literals? In other words, when you say
char const* presents[150], is this because someone forgot the
second const, or is it because you actually modify the
pointers later. And is it because someone actually counted the
initializers, and put the number in the braces, and you update
this number each time you add or remove an initializer, or is it
because you provide less initializers, and count on the trailing
values being initialized with a nul pointer? Without knowing
exactly what you're trying to do, it's difficult giving good
recommendations.
In the most frequent case I've encountered, where what you
really want is that everything be const, and that the size of
the array correspond exactly to the number of initializers, the
best solution is probably to just leave it as it is. To get
automatic sizing of the array, you need to use either C style
arrays, or (and then only with C++11) std::vector;
std::array requires you to explicitly give the number of
elements. And to get truly static initialization (and thus
never have any risk of order of initialization issues), you
need either a C style array or std::array, in both cases of
char const* (and not std::string, which requires dynamic
initialization).
Note that using char const* rather than std::string does
mean that each time you access it (typically), you will
construct a new std::string. Depending on the implementation,
this may introduce some extra runtime overhead. Usually, this
is not a problem, but it may be something to consider as well;
it has to be weighed against the fact that if you use the object
from constructors of other static objects, using std::string
will cause order of initialization issues which would have to be
addresses.
std::array<std::string, 150>would be the best option. – Angew Jan 7 at 15:41std::arrayis defined astemplate<typename T, int size> struct std::array { T a[size]; };so what's the advantage of usingstd::array<std::string, 150> presetsoverstd::string presets[150](besides just using this syntax). – Aleks G Jan 7 at 15:48