Why can't we initialize members inside a structure ?
example:
struct s {
int i=10;
};
|
|
|
If you want to initialize non-static members in In C++ (not C),
If you want to initialize an instance: In C or C++:
C99 also has a feature called designated initializers:
There is also a GNU C extension which is very similar to C99 designated initializers, but it's better to use something more portable:
|
||||
|
|
|
The direct answer is because the structure definition declares a type and not a variable that can be initialized. Your example is:
This does not declare any variable - it defines a type. To declare a variable, you would add a name between the
As Checkers noted, in C99, you can also use designated initializers (which is a wonderful improvement -- one day, C will catch up with the other features that Fortran 66 had for data initialization, primarily repeating initializers a specifiable number of times). With this simple structure, there is no benefit. If you have a structure with, say, 20 members and only needed to initialize one of them (say because you have a flag that indicates that the rest of the structure is, or is not, initialized), it is more useful:
This notation can also be used to initialize unions, to choose which element of the union is initialized. |
|||
|
|
|
Edit: The question was originally tagged In C++ a C++ only allows
|
||||
|
|