文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>spring.net泛型的配置以及使用方法

spring.net泛型的配置以及使用方法

时间:2010-09-26  来源:努力去偷懒

下面是泛型的类定义: 代码 using System.Collections.Generic;
using System;

namespace piggyWinFormTemplet
    public class SpringGenericTest <T>
    {
        private List<T> list;

        private String name;

        public List<T> Contents
        {
            get { return list; }
            set { list = value; }
        }

        public String TypeName
        {
            get
            {
                Type type = typeof(T);
                return type.Name;
            }
        }

        public String Name
        {
            get { return name; }
            set { name = value; }
        }

        public List<T> ApplyFilter(String filterExpression)
        {
            /// should really apply filter to list ;)
            return new List<T>();
        }
    }

 

在配置中是这样配置的:

 

  <object id="springGenericTest" type="piggyWinFormTemplet.SpringGenericTest&lt;int>, piggyWinForm">
    <property name="Name" value="My Integer List"/>
  </object>

 

调用的方法:

 

代码             //spring.net泛型测试
            SpringGenericTest<int> myGenericTest=(SpringGenericTest<int>)SpringTool.Context.GetObject("springGenericTest");
            LogTool.Log.Error("spring.net泛型测试结果:" + myGenericTest.TypeName);

 

 参考资料:4.2.4.泛型类的对象创建

 

相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载