C#编程-106:泛型继承之普通类继承泛型类
2024-06-25 09:51:41 阅读次数:28
编程开发
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
-
- namespace GenericClassTwo
- {
- public abstract class GenericClass//泛型类
- {
- protected T field;
- public virtual T Property
- {
- get { return field; }
- }
- public GenericClass(int index) { }
- public GenericClass(T t)
- {
- field = t;
- }
- public abstract void method(T t);
- }
- class OrdinaryClass : GenericClass<</span>int>//普通类
- {
- public override int Property
- {
- get
- {
- return base.Property;
- }
- }
- public OrdinaryClass(int t) : base(t) { }
- public override void method(int t)
- {
- Console.WriteLine("property value ={0}",t);
- }
-
- }
- class Program
- {
- static void Main(string[] args)
- {
- int val = 1000;
- OrdinaryClass or = new OrdinaryClass(val);
- or.method(val);
- Console.WriteLine("普通类继承泛型类演示成功");
- Console.ReadKey();
- }
- }
- }
版权声明:本文内容来自第三方投稿或授权转载,原文地址:https://blog.51cto.com/mouday/3045595,作者:彭世瑜,版权归原作者所有。本网站转在其作品的目的在于传递更多信息,不拥有版权,亦不承担相应法律责任。如因作品内容、版权等问题需要同本网站联系,请发邮件至ctyunbbs@chinatelecom.cn沟通。
上一篇:C#编程-147:线程基础
下一篇:JavaFX使用maven-assembly-plugin打包