How do you enumerate the names and types inside a

2019-05-02 03:15发布

How do you enumerate the names and types inside a struct or class at compile time?

i.e. to do the following:

struct Foo {
  int x;
  int y;
}

string serialise!(A)(A a) {
  ...magic...
}

auto f = Foo(1,2);
serialise(f); -> "x:1, y:2"

Thanks,

Chris.

1条回答
一夜七次
2楼-- · 2019-05-02 03:45

Like this:

foreach (index, field; myStruct.tupleof)
{
    // field.stringof is "field", slice is to cut off "myStruct."
    pragma(msg, "Name: " ~ myStruct.tupleof[index].stringof[9..$]);
    pragma(msg, "Type: " ~ typeof(field).stringof);
}

Practical example: https://github.com/CyberShadow/ae/blob/master/utils/json.d#L107

查看更多
登录 后发表回答