Tagged Questions
The designated-initializer tag has no wiki summary.
26
votes
3answers
721 views
What does dot (.) mean in a struct initializer?
static struct fuse_oprations hello_oper = {
.getattr = hello_getattr,
.readdir = hello_readdir,
.open = hello_open,
.read = hello_read,
};
I don't understand this C syntax well. I ...
10
votes
5answers
4k views
Which initializer(s) to override for UITableViewController subclass
I have a UITableViewController subclass that's instantiated, depending on where it's used, in a NIB or via code. In both cases I want to do customization in the initializer method. Does that mean I ...
5
votes
5answers
87 views
Is it possible to get pointer to the 'this' structure, when using designated initializer?
This kind of struct is used as head of linked list:
struct lista
{
struct lista* next;
struct lista* prev;
};
When next and prev both points to struct itself, then the list is empty.
The ...
5
votes
5answers
3k views
C++ Equivalent to Designated Initializers?
Recently I've been working on some embedded devices, where we have some structs and unions that need to be initialized at compile time so that we can keep certain things in flash or ROM that don't ...
4
votes
1answer
133 views
What happens to fields not named by a designated initializer?
In C99 (and not in C++), it's possible to initialize structs using this syntax:
struct info
{
char name[8+1];
int sz;
int typ;
};
struct info arr[] =
{
[0] = { .sz = 20, ...
3
votes
3answers
85 views
Combine designated initializers and malloc in C99+?
Is there a nice way to combine designated initializers from C99, with the result of a malloc?
The following seems to have needless duplication:
typedef struct {
int a, b, c;
} Type;
Type *t = ...