C#動態對象dynamic實現方法和屬性動態代碼詳解

來源:互聯網
上載者:User
下面小編就為大家帶來一篇C#動態對象(dynamic)詳解(實現方法和屬性的動態)。小編覺得挺不錯的,現在就分享給大家,也給大家做個參考。一起跟隨小編過來看看吧

C#的動態對象的屬性實現比較簡單,如果要實現動態語言那種動態方法就比較困難,因為對於dynamic對象,擴充方法,匿名方法都是不能用直接的,這裡還是利用對象和委託來類比這種動態方法的實現,看起來有點javascript的對象味道:

1) 定義一個委託,參數個數可變,參數都是object類型:這裡的委託多有個dynamic參數,代表調用這個委託的動態對象本身。

public delegate object MyDelegate(dynamic Sender, params object[] PMs);

2) 定義一個委託轉載對象,因為dynamic對象不能直接用匿名方法,這裡用對象去承載:

public class DelegateObj  {    private MyDelegate _delegate;    public MyDelegate CallMethod    {      get { return _delegate; }    }    private DelegateObj(MyDelegate D)    {      _delegate = D;    }    /// <summary>    /// 構造委派物件,讓它看起來有點javascript定義的味道.    /// </summary>    /// <param name="D"></param>    /// <returns></returns>    public static DelegateObj Function(MyDelegate D)    {      return new DelegateObj(D);    }  }

3) 定義一個動態對象:

public class DynObj : DynamicObject  {    //儲存對象動態定義的屬性值    private Dictionary<string, object> _values;    public DynObj()    {      _values = new Dictionary<string, object>();    }    /// <summary>    /// 擷取屬性值    /// </summary>    /// <param name="propertyName"></param>    /// <returns></returns>    public object GetPropertyValue(string propertyName)    {      if (_values.ContainsKey(propertyName) == true)      {        return _values[propertyName];      }      return null;    }    /// <summary>    /// 設定屬性值    /// </summary>    /// <param name="propertyName"></param>    /// <param name="value"></param>    public void SetPropertyValue(string propertyName,object value)    {      if (_values.ContainsKey(propertyName) == true)      {        _values[propertyName] = value;      }      else      {        _values.Add(propertyName, value);      }    }    /// <summary>    /// 實現動態對象屬性成員訪問的方法,得到返回指定屬性的值    /// </summary>    /// <param name="binder"></param>    /// <param name="result"></param>    /// <returns></returns>    public override bool TryGetMember(GetMemberBinder binder, out object result)    {      result = GetPropertyValue(binder.Name);      return result == null ? false : true;    }    /// <summary>    /// 實現動態對象屬性值設定的方法。    /// </summary>    /// <param name="binder"></param>    /// <param name="value"></param>    /// <returns></returns>    public override bool TrySetMember(SetMemberBinder binder, object value)    {      SetPropertyValue(binder.Name, value);      return true;    }    /// <summary>    /// 動態對象動態方法引動過程時執行的實際代碼    /// </summary>    /// <param name="binder"></param>    /// <param name="args"></param>    /// <param name="result"></param>    /// <returns></returns>    public override bool TryInvokeMember(InvokeMemberBinder binder, object[] args, out object result)    {      var theDelegateObj = GetPropertyValue(binder.Name) as DelegateObj;      if (theDelegateObj == null || theDelegateObj.CallMethod == null)      {        result = null;        return false;      }      result = theDelegateObj.CallMethod(this,args);      return true;    }    public override bool TryInvoke(InvokeBinder binder, object[] args, out object result)    {      return base.TryInvoke(binder, args, out result);    }  }

應用測試代碼:

dynamic theObj = new DynObj();      theObj.aaa = "this is a test";//動態屬性      //動態方法,這裡不能沒法定義參數,調用的時候可以是任意多參數,具體參數類型和含義就只能自己去小心處理了.      theObj.show = DelegateObj.Function((s, pms) =>      {        if (pms != null && pms.Length > 0)        {          MessageBox.Show(pms[0].ToString() + ":" + s.aaa);        }        else        {          MessageBox.Show(s.aaa);        }        return null;      }      );      theObj.show("hello");

雖然看起來上面有點Js定義對象方法的味道,但由於C#是靜態語言,提供的動態類比機制還是有限的,看起來是動態,但所有的值存放和方法都需要自己寫代碼去處理.

上面代碼在vs2010,windows 2008 server,架構4.0 上測試OK.

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.