程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> 泛型類接口定義

泛型類接口定義

編輯:C#入門知識

在使用泛型定義類的過程中遇到了不少問題,特記錄如下:

定義最基本的泛型類如下:


[csharp] public abstract class GetDataBase<T> :IHttpHandler, IRequiresSessionState { 
 protected abstract T GetModel(HttpContext context); 
    protected abstract IList<T> GetList(int pageSize, int pageIndex, string where, string sortname, string sortorder, out int total);   
    protected JsonFlexiGridData GetFlexiGridData(IList<T> list, int pageIndex, int pageSize, int total, string colkey, string colsinf)  
    { 
        PagedList<T> pl = new PagedList<T>(); 
        pl.PageIndex = pageIndex - 1; 
        pl.PageSize = pageSize; 
        pl.DataList = new List<T>(); 
        pl.DataList.AddRange(list); 
        pl.Total = total; 
        JsonFlexiGridData data = JsonFlexiGridData.ConvertFromPagedList(pl, colkey, colsinf.Split(',')); 
        return data;    
    } 
     

public abstract class GetDataBase<T> :IHttpHandler, IRequiresSessionState {
 protected abstract T GetModel(HttpContext context);
 protected abstract IList<T> GetList(int pageSize, int pageIndex, string where, string sortname, string sortorder, out int total); 
    protected JsonFlexiGridData GetFlexiGridData(IList<T> list, int pageIndex, int pageSize, int total, string colkey, string colsinf)
    {
        PagedList<T> pl = new PagedList<T>();
        pl.PageIndex = pageIndex - 1;
        pl.PageSize = pageSize;
        pl.DataList = new List<T>();
        pl.DataList.AddRange(list);
        pl.Total = total;
        JsonFlexiGridData data = JsonFlexiGridData.ConvertFromPagedList(pl, colkey, colsinf.Split(','));
        return data;  
    }
 
}

 

 


其實最簡單的只需要添加<T>,就表示泛型類了,可在使用的過程中 pl.DataList = new List<T>();總是提示錯誤,編譯不通過,說是必須是類才可以,於是修改如下

[csharp] public abstract class GetDataBase<T> :IHttpHandler, IRequiresSessionState where T : class{ 

public abstract class GetDataBase<T> :IHttpHandler, IRequiresSessionState where T : class{1設定泛型基類或者要求


關鍵的一句where T : class就表示類型是類,當然如果需要T是其他類型,例如接口,或者是繼承與某個類,也是同樣的修改方法

例如泛型接口繼承於泛型接口IObjectWithKey<TK>,


[csharp]
public interface IDeviceAgent<TK, TCk> : IObjectWithKey<TK>, IDisposable{ 

public interface IDeviceAgent<TK, TCk> : IObjectWithKey<TK>, IDisposable{

 

例如泛型接口IContainer的第一類型TV必須繼承與接口IObjectWithKey<TK>
[csharp]
public interface IContainer<TK, TV> where TV:IObjectWithKey<TK>{ 

public interface IContainer<TK, TV> where TV:IObjectWithKey<TK>{

 

 

2泛型有多個類型

[csharp]
public interface IContainer<TK, TV> where TV:IObjectWithKey<TK>{ 

public interface IContainer<TK, TV> where TV:IObjectWithKey<TK>{就有多個類型,當然,在具體的類中,這兩種類型可以相同,也可以不同

其實也就是在一對<>中放置多個類型,有幾個類型,就放幾個參數,名稱沒有什麼特殊要求

 

 

3泛型如果有多個類型約束,例如都要求是類,如何處理


試了很多次,不知道如何定義,請知道的指點下


[csharp]
public abstract class GetDataBase<T,T2> :IHttpHandler, IRequiresSessionState where T2,T :  class{ 

public abstract class GetDataBase<T,T2> :IHttpHandler, IRequiresSessionState where T2,T :  class{

 

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