web-dev-qa-db-ja.com

型のすべての定数をリフレクションによって取得するにはどうすればよいですか?

リフレクションを使用してどのようなタイプのすべての定数を取得できますか?

119
masoud ramezani

古いコードですが:

private FieldInfo[] GetConstants(System.Type type)
{
    ArrayList constants = new ArrayList();

    FieldInfo[] fieldInfos = type.GetFields(
        // Gets all public and static fields

        BindingFlags.Public | BindingFlags.Static | 
        // This tells it to get the fields from all base types as well

        BindingFlags.FlattenHierarchy);

    // Go through the list and only pick out the constants
    foreach(FieldInfo fi in fieldInfos)
        // IsLiteral determines if its value is written at 
        //   compile time and not changeable
        // IsInitOnly determines if the field can be set 
        //   in the body of the constructor
        // for C# a field which is readonly keyword would have both true 
        //   but a const field would have only IsLiteral equal to true
        if(fi.IsLiteral && !fi.IsInitOnly)
            constants.Add(fi);           

    // Return an array of FieldInfos
    return (FieldInfo[])constants.ToArray(typeof(FieldInfo));
}

ソース

ジェネリックとLINQを使用して、よりクリーンなコードに簡単に変換できます。

private List<FieldInfo> GetConstants(Type type)
{
    FieldInfo[] fieldInfos = type.GetFields(BindingFlags.Public |
         BindingFlags.Static | BindingFlags.FlattenHierarchy);

    return fieldInfos.Where(fi => fi.IsLiteral && !fi.IsInitOnly).ToList();
}

または、1行で:

type.GetFields(BindingFlags.Public | BindingFlags.Static |
               BindingFlags.FlattenHierarchy)
    .Where(fi => fi.IsLiteral && !fi.IsInitOnly).ToList();
232
gdoron

ターゲットタイプから、特定のタイプのすべての定数のvaluesを取得する場合は、拡張メソッドを使用します(このページの回答の一部を拡張します)。

public static class TypeUtilities
{
    public static List<T> GetAllPublicConstantValues<T>(this Type type)
    {
        return type
            .GetFields(BindingFlags.Public | BindingFlags.Static | BindingFlags.FlattenHierarchy)
            .Where(fi => fi.IsLiteral && !fi.IsInitOnly && fi.FieldType == typeof(T))
            .Select(x => (T)x.GetRawConstantValue())
            .ToList();
    }
}

次に、このようなクラスの場合

static class MyFruitKeys
{
    public const string Apple = "Apple";
    public const string Plum = "Plum";
    public const string Peach = "Peach";
    public const int WillNotBeIncluded = -1;
}

次のようにstring定数値を取得できます。

List<string> result = typeof(MyFruitKeys).GetAllPublicConstantValues<string>();
//result[0] == "Apple"
//result[1] == "Plum"
//result[2] == "Peach"
39
BCA

タイプ拡張として:

public static class TypeExtensions
{
    public static IEnumerable<FieldInfo> GetConstants(this Type type)
    {
        var fieldInfos = type.GetFields(BindingFlags.Public | BindingFlags.Static | BindingFlags.FlattenHierarchy);

        return fieldInfos.Where(fi => fi.IsLiteral && !fi.IsInitOnly);
    }

    public static IEnumerable<T> GetConstantsValues<T>(this Type type) where T : class
    {
        var fieldInfos = GetConstants(type);

        return fieldInfos.Select(fi => fi.GetRawConstantValue() as T);
    }
}
14
bytedev

property.GetConstantValue()を使用して値を取得します。

2
Reza Bayat