5

コンパイル時に構造体またはクラス内の名前と型をどのように列挙しますか?

つまり、次のことを行います。

struct Foo {
  int x;
  int y;
}

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

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

ありがとう、

クリス。

4

1 に答える 1

8

このような:

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);
}

実際の例: https://github.com/Cyber​​Shadow /ae/blob/master/utils/json.d#L107

于 2011-09-21T08:41:05.030 に答える