Fairly new programmer here, and an advance apology for silly questions.
I have an int variable in a program that I use to determine what the lengths of my arrays should be in some of my structures. I used to put it in my header as a const int. Now, I want to fork my program to give the variable different values depending on the arguments given in, but keep it read-only after I assign it at run-time.
A few ideas I've had to do this. Is there a preferred way?
- Declare a
const int *in my header and assigning it to aconst intin my main function, but that seems clunky. - Make it a plain
intin my main function. - Pass the variable as an argument when the function is called.
- Something else I haven't thought of yet.
new) a non-compile-time size in C++. You have to use either astd::vectoror allocate it withnew. – Nicol Bolas Oct 24 '11 at 19:01new. – Blue Magister Oct 25 '11 at 19:39