使用反射機制獲取對象中字段的字段的內容

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Reflection;


namespace demo
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }


        [Serializable]
        public class A
        {
            public B b1 = new B();
            public B b2 = new B();
            public B b3 = new B();
        }


        [Serializable]
        public class B
        {
            public string s1 = "1";
            public string s2 = "2";
            public string s3 = "3";
        }


        private void button1_Click(object sender, EventArgs e)
        {
            A a = new A();
            //根據對象a獲取當前實例type
            System.Type type = a.GetType();
            //根據傳入參數"b1"搜索具有指定名稱的公共字段
            FieldInfo fieidinfo = type.GetField("b1");
            //將獲取到的字段實例化ob      如果沒有搜索到字段 ob 將無法初始化
            object ob = fieidinfo.GetValue(a);
            //再以同樣的方式再處理一遍對象,最後輸出值
            MessageBox.Show(ob.GetType().GetField("s1").GetValue(ob).ToString());
        }
    }
}
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章