Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
405 views
in Technique[技术] by (71.8m points)

c - Designated initializers and omitted elements

Can anybody please explain the following line about the designated initializers:

The initializer list can omit elements that are declared anywhere in the aggregate, rather than only at the end.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

If you use a conventional initialiser list, the values for the elements are assigned in order, so if you have this struct:

typedef struct _foo {
  int a;
  int b;
} foo_t;

then this initialiser explicitly assigns a and not b:

foo_t value = { 7 };

without designated initialisers, the only elements which can be omitted are the ones declared at the end

using designated initialisers, you can omit elements that are declared anywhere:

foo_t value = { .b = 8 };

so the initialiser for value.a is omitted, despite being the first value in the struct.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...