initialize a const array in a class initializer in C++ - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T05:12:15Z http://stackoverflow.com/feeds/question/161790 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/161790/initialize-a-const-array-in-a-class-initializer-in-c 4 initialize a const array in a class initializer in C++ Nathan Fellman 2008-10-02T11:23:08Z 2009-10-05T09:45:56Z <p>I have the following class in C++:</p> <pre><code>class a { const int b[2]; // other stuff follows // and here's the constructor a(void); } </code></pre> <p>The question is, how do I initialize b in the initialization list, given that I can't initialize it inside the body of the function of the constructor, because b is <code>const</code>?</p> <p>This doesn't work:</p> <pre><code>a::a(void) : b([2,3]) { // other initialization stuff } </code></pre> <p>Edit: The case in point is when I can have different values for <code>b</code> for different instances, but the values are known to be constant for the lifetime of the instance.</p> http://stackoverflow.com/questions/161790/initialize-a-const-array-in-a-class-initializer-in-c/161806#161806 0 Answer by Trap for initialize a const array in a class initializer in C++ Trap 2008-10-02T11:28:35Z 2008-10-02T11:28:35Z <p>You can't do that from the initialization list, </p> <p>Have a look at this:</p> <p><a href="http://www.cprogramming.com/tutorial/initialization-lists-c++.html" rel="nofollow">http://www.cprogramming.com/tutorial/initialization-lists-c++.html</a></p> <p>:)</p> http://stackoverflow.com/questions/161790/initialize-a-const-array-in-a-class-initializer-in-c/161816#161816 12 Answer by Luc Touraille for initialize a const array in a class initializer in C++ Luc Touraille 2008-10-02T11:31:48Z 2008-10-02T11:31:48Z <p>It is not possible in the current standard. I believe you'll be able to do this in C++0x using initializer lists (see <a href="http://www.artima.com/cppsource/cpp0x.html" rel="nofollow">A Brief Look at C++0x</a>, by Bjarne Stroustrup, for more information about initializer lists and other nice C++0x features).</p> http://stackoverflow.com/questions/161790/initialize-a-const-array-in-a-class-initializer-in-c/161829#161829 2 Answer by Daniel Bungert for initialize a const array in a class initializer in C++ Daniel Bungert 2008-10-02T11:34:56Z 2008-10-02T11:43:11Z <p>Where I've a constant array, it's always been done as static. If you can accept that, this code should compile and run.</p> <pre><code>#include &lt;stdio.h&gt; #include &lt;stdlib.h&gt; class a { static const int b[2]; public: a(void) { for(int i = 0; i &lt; 2; i++) { printf("b[%d] = [%d]\n", i, b[i]); } } }; const int a::b[2] = { 4, 2 }; int main(int argc, char **argv) { a foo; return 0; } </code></pre> http://stackoverflow.com/questions/161790/initialize-a-const-array-in-a-class-initializer-in-c/161875#161875 0 Answer by orj for initialize a const array in a class initializer in C++ orj 2008-10-02T11:50:26Z 2008-10-02T11:50:26Z <p>ISO standard C++ doesn't let you do this. If it did, the syntax would probably be:</p> <pre><code>a::a(void) : b({2,3}) { // other initialization stuff } </code></pre> <p>Or something along those lines. From your question it actually sounds like what you want is a constant class (aka static) member that is the array. C++ does let you do this. Like so:</p> <pre><code>#include &lt;iostream&gt; class A { public: A(); static const int a[2]; }; const int A::a[2] = {0, 1}; A::A() { } int main (int argc, char * const argv[]) { std::cout &lt;&lt; "A::a =&gt; " &lt;&lt; A::a[0] &lt;&lt; ", " &lt;&lt; A::a[1] &lt;&lt; "\n"; return 0; } </code></pre> <p>The output being:</p> <pre><code>A::a =&gt; 0, 1 </code></pre> <p>Now of course since this is a static class member it is the same for every instance of class A. If that is not what you want, ie you want each instance of A to have different element values in the array a then you're making the mistake of trying to make the array const to begin with. You should just be doing this:</p> <pre><code>#include &lt;iostream&gt; class A { public: A(); int a[2]; }; A::A() { a[0] = 9; // or some calculation a[1] = 10; // or some calculation } int main (int argc, char * const argv[]) { A v; std::cout &lt;&lt; "v.a =&gt; " &lt;&lt; v.a[0] &lt;&lt; ", " &lt;&lt; v.a[1] &lt;&lt; "\n"; return 0; } </code></pre> http://stackoverflow.com/questions/161790/initialize-a-const-array-in-a-class-initializer-in-c/162372#162372 5 Answer by pongba for initialize a const array in a class initializer in C++ pongba 2008-10-02T13:52:14Z 2008-10-02T13:52:14Z <p>Like the others said, ISO C++ doesn't support that. But you can workaround it. Just use std::vector instead.</p> <pre><code>int* a = new int[N]; // fill a class C { const std::vector&lt;int&gt; v; public: C():v(a, a+N) {} }; </code></pre> http://stackoverflow.com/questions/161790/initialize-a-const-array-in-a-class-initializer-in-c/922255#922255 0 Answer by Nefzen for initialize a const array in a class initializer in C++ Nefzen 2009-05-28T17:44:12Z 2009-05-29T00:01:00Z <p>interestingly, in C# you have the keyword const that translates to C++'s static const, as opposed to readonly which can be only set at constructors and initializations, even by non-constants, ex:</p> <pre><code>readonly DateTime a = DateTime.Now; </code></pre> <p>I agree, if you have a const pre-defined array you might as well make it static. At that point you can use this interesting syntax:</p> <pre><code>//in header file class a{ static const int SIZE; static const char array[][10]; }; //in cpp file: const int a::SIZE = 5; const char array[SIZE][10] = {"hello", "cruel","world","goodbye", "!"}; </code></pre> <p>however, I did not find a way around the constant '10'. The reason is clear though, it needs it to know how to perform accessing to the array. A possible alternative is to use #define, but I dislike that method and I #undef at the end of the header, with a comment to edit there at CPP as well in case if a change.</p>