程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#基礎知識 >> C#成員函數直接調用和反射+委托的性能比較

C#成員函數直接調用和反射+委托的性能比較

編輯:C#基礎知識
using System;
using System.Reflection;
using System.Diagnostics;

namespace Refl
{
	class Test
	{
		public void Method()
		{
		}
	}

	class MainClass
	{
		const int loops = 100000000;
		Test m_Test = new Test();
		Action m_Action;

		public MainClass()
		{
			Type t = typeof(Test);
			MethodInfo m = t.GetMethod("Method");
			m_Action = (Action)Delegate.CreateDelegate(typeof(Action), m_Test, m);
		}

		public void Test1()
		{
			Stopwatch stopWatch = new Stopwatch();
			stopWatch.Start();
			for (int i = 0; i < loops; ++i)
			{
				m_Test.Method();
			}
			stopWatch.Stop();

			Console.WriteLine("Test1 - direct invoke: " + stopWatch.ElapsedMilliseconds);
		}

		public void Test2()
		{
			Stopwatch stopWatch = new Stopwatch();
			stopWatch.Start();
			for (int i = 0; i < loops; ++i)
			{
				m_Action();
			}
			stopWatch.Stop();

			Console.WriteLine("Test2 - delegate invoke: " + stopWatch.ElapsedMilliseconds);
		}

		public static void Main(string[] args)
		{
			MainClass main = new MainClass();
			main.Test1();
			main.Test2();

			Console.ReadKey();
		}
	}
}

Xamarin - Release結果

第一次:

Test1 - direct invoke: 633 ms

Test2 - delegate invoke: 527 ms

 

第二次

Test1 - direct invoke: 644 ms

Test2 - delegate invoke: 661 ms

 

第三次

Test1 - direct invoke: 621 ms

Test2 - delegate invoke: 646 ms

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved