Next: , Previous: , Up: Structures   [Contents][Index]


15.16 Structure Constructors

You can construct a structure value by writing its type in parentheses, followed by an initializer that would be valid in a declaration for that type. For instance, given this declaration,

struct foo {int a; char b[2];} structure;

you can create a struct foo value as follows:

((struct foo) {x + y, 'a', 0})

This specifies x + y for field a, the character ‘a’ for field b’s element 0, and the null character for field b’s element 1.

The parentheses around that constructor are to necessary, but we recommend writing them to make the nesting of the containing expression clearer.

You can also show the nesting of the two by writing it like this:

((struct foo) {x + y, {'a', 0} })

Each of those is equivalent to writing the following statement expression (see Statement Exprs):

({
  struct foo temp = {x + y, 'a', 0};
  temp;
})

You can also create a union value this way, but it is not especially useful since that is equivalent to doing a cast:

  ((union whosis) {value})
is equivalent to
  ((union whosis) (value))