I am trying to use an integer as a template parameter for a class. Here is a sample of the code:
template< int array_qty >
class sample_class {
public:
std::array< std::string, array_qty > sample_array;
}
If I do so something like this, it works:
sample_class< 10 > sample_class_instance;
However, let's say that I do not know the value of array_qty (the template parameter) when compiling, and will only know it during run-time. In this case, I would essentially be passing an int variable as the template argument. For the sake of demonstration, the following code does not work:
int test_var = 2;
int another_test_var = 5;
int test_array_qty = test_var * another_test_var;
sample_class< test_array_qty > sample_class_instance;
I get the following error during compile time when trying the above:
the value of ‘test_array_qty’ is not usable in a constant expression
I've tried converting test_array_qty to a const while passing it as the template parameter, but that doesn't seem to do the trick either. Is there any way to do this, or am I misusing template parameters? Perhaps they need to be known at compile time?
The goal is NOT to solve this specific approach, but rather to find a way to set the length of the array to an int variable that can be stated when instantiating the class. If there is a way to do this via a template parameter, that would be ideal.
Please note that I have to use an array for this, and NOT a vector which I may end up as a suggestion. Additionally, array_qty will always be a value between 0 and 50 - in case that makes a difference.
Edit:
I stated that I cannot use a vector for this because I CANNOT USE A VECTOR FOR THIS. Yes, I have benchmarked it. Either way, this question is not an exploration of "arrays vs vectors". I want to avoid this question having many comments and answers telling me to "just use a vector". That's kind of like going up to Edison and saying "just use a candle". Good programming is an exploration of what's possible, not just a statement of what's known. If we cannot figure this out due to sheer impossibility, that is one thing. Not exploring the possibility of a solution to this because "a vector would be easier" is not.
Also, I do not understand why there is a downvote on this. This is a perfectly valid question asked in a coherent manner.

std::vectoris the best option I see here, despite your comment. You can initialize the size with a member initializer. – chris Jan 19 at 18:33constexpr. otherwise, as others said, you can't usearray<>, and you should switch tovector<>– Andy Prowl Jan 19 at 18:35