zoukankan      html  css  js  c++  java
  • 使用dynamic动态设置属性值与反射设置属性值性能对比

    static void Main(string[] args)
    
           {
               int times = 1000000;
     
               string value = "Dynamic VS  Reflection";
     
               //reflection 测试开始
               TestClass testTypeByReflection = new TestClass();
               Stopwatch watch1 = Stopwatch.StartNew();
               var property = typeof(TestClass).GetProperty("TestProperty");
               for (var i = 0; i < times; i++)
               {
                   property.SetValue(testTypeByReflection, value, null);
               }
               Console.WriteLine(string.Format("Reflection耗时:{0} 毫秒", watch1.ElapsedMilliseconds));
     
     
               //dynamic 测试开始
               Stopwatch watch2 = Stopwatch.StartNew();
               dynamic testTypeByDynamic = new TestClass();
               for (int i = 0; i < times; i++)
               {
                   testTypeByDynamic.TestProperty = value;
               }
               Console.WriteLine(string.Format("Dynamic耗时:{0} 毫秒", watch2.ElapsedMilliseconds));
     
               Console.ReadLine();
           }
    

      


    作者:RyanDing 
    出处:http://www.cnblogs.com/ryanding/ 
    本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。如有疑问,可以通过 ryan.d@qq.com 联系作者本人。

  • 相关阅读:
    本周总结
    本周总结
    本周总结
    本周总结
    性能分析(4)
    大型网站高性能架构
    第二天大数据清洗
    性能分析(2)
    六大质量属性——性能分析(1)
    java设计模式9-代理模式
  • 原文地址:https://www.cnblogs.com/ProDoctor/p/6058989.html
Copyright © 2011-2022 走看看