代码之家  ›  专栏  ›  技术社区  ›  oliver

使用数组设置/获取类的字段:比反射更快的方法?

  •  0
  • oliver  · 技术社区  · 6 年前

    当我进入我的 Operation 类从外部,我使用反射设置它们的值数组字段。这是因为它更适合于自动化目的。

    Calculate ),为了更好的可读性,我想按名称使用字段。字段的数量在派生自 操作 .

    有没有比反射更快的方法?

    public abstract class Operation
    {
        readonly FieldInfo[] inputFields;
    
        public int InputCount {get {return inputFields.Length;}}
    
        public Cacheable[] InputData
        {
            get 
            {
                Cacheable[] result = new Cacheable[inputFields.Length];
    
                for (int i=0; i<inputFields.Length; i++)
                {
                    result[i] = (Cacheable)inputFields[i].GetValue(this);
                }
    
                return result;
            }
            set 
            {
                for (int i=0; i<inputFields.Length; i++)
                {
                    inputFields[i].SetValue(this, value[i]);
                }
            }
        }
    
        public Operation()
        {
            FieldInfo[] inputFields = GetType().GetFields();
        }
    
        public abstract void Calculate();
    }
    
    public class OperationA: Operation
    {
        public CacheableU SomeField;
        public CacheableV AnotherField;
    
        public override void Calculate()
        {
            DoSomething(SomeField, AnotherField);
        }
    }   
    
    public class OperationB: Operation
    {
        public CacheableU SomeField;
        public CacheableV AnotherField;
        public CacheableW YetAnotherField;
    
        public override void Calculate()
        {
            DoSomethingElse(SomeField, AnotherField, YetAnotherField);
        }
    }
    
    // ...
    Cacheable[] inputsToA = new[]{c1, c2};
    OperationA opa = new OperationA();
    opa.InputData = inputsToA;
    opa.Calculate();
    
    Cacheable[] inputsToB = new[]{c3, c4, c5};
    OperationB opb = new OperationB();
    opb.InputData = inputsToB;
    opb.Calculate();
    
    0 回复  |  直到 6 年前
        1
  •  3
  •   willaien    6 年前

    简短回答:是的。

    更长的答案:这取决于。多久做一次?如果在应用程序的生命周期中多次执行,那么有比反射更快的方法:要么使用表达式树( https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/concepts/expression-trees/ )或者在运行时发出IL来执行此操作。