+ 2
How to initialize 'const int var[5]' member of a class with 1,2,3,4,5?
Keep in mind it is 'const'
4 Respuestas
+ 6
A non static const array is cannot be initialize in constructor. Whereas you can initialize this from C++11 as shown below.
class test
{
public:
test () : var({1,2,3,4,5})
{}
const int var[5];
};
in main ()
test obj;
cout <<obj.var[0]<<obj.var[1]<<obj.var[2]<<obj.var[3]<<obj.var[4]<<endl;
Hope you understand this otherwise let me know the exact scenario which you are trying to address.
+ 2
how will it work if i want pass its values from constuctor argument?
+ 2
Guess, in a same way it will work. Take an argument in constructor and assign it to the array
test (arr) : var (arr){}
but not sure whether will it or not.
If not you can use the pointers instead of array.
+ 1
Thank you buddy. It works.. :)