我有一个像这样的通用界面:
public interface IHardwareProperty<T>{
bool Read();
bool Write();
}
哪个“传递”了一个抽象基类:
public abstract class HardwareProperty<T>:IHardwareProperty<T>{
//Paritally implements IHardwareProperty (NOT SHOWN), and passes Read and Write through
//as abstract members.
public abstract bool Read();
public abstract bool Write();
}
并在几个使用不同泛型参数的继承类中完成
CompletePropertyA:IHardwareProperty<int>
{
//Implements Read() & Write() here
}
CompletePropertyBL:IHardwareProperty<bool>
{
//Implements Read() & Write() here
}
我想在同一个集合中存储一堆不同类型的已完成属性。
有没有办法做到这一点,而不诉诸于object
的集合?
答案 0 :(得分:5)
您需要使用所有这些类型支持的类型。您可以通过使IHardwareProperty<T>
接口非通用:
public interface IHardwareProperty
{
bool Read();
bool Write();
}
由于您的界面中没有一个方法使用T
,这非常合适。使接口通用的唯一原因是,如果您在接口方法或属性中使用泛型类型。
请注意,如果实现细节需要或需要,您的基类仍然是通用的:
public abstract class HardwareProperty<T> : IHardwareProperty
{
//...
答案 1 :(得分:0)
不幸的是,因为每个具有不同类型参数的泛型类型都被视为完全不同的类型。
typeof(List<int>) != typeof(List<long>)
答案 2 :(得分:0)
为了后代而张贴:我的问题几乎与此相同,但是稍作调整,我的界面没有使用了通用类型。
我有多个实现通用接口的类。目标是拥有多个<Int/Bool/DateTime>Property
类,每个类包含一个字符串(_value
)和一个getValue()
函数,该函数在被调用时会将字符串_value
转换为不同的类型,取决于接口的实现。
public interface IProperty<T>
{
string _value { get; set; }
T getValue();
};
public class BooleanProperty : IProperty<bool>
{
public string _value { get; set; }
public bool getValue()
{
// Business logic for "yes" => true
return false;
}
}
public class DateTimeProperty : IProperty<DateTime>
{
public string _value { get; set; }
public DateTime getValue()
{
// Business logic for "Jan 1 1900" => a DateTime object
return DateTime.Now;
}
}
然后,我希望能够将多个这些对象添加到单个容器中,然后在每个容器上调用getValue()
,它将返回布尔值或DateTime或其他取决于类型的对象。
我认为我可以做到以下几点:
List<IProperty> _myProperties = new List<IProperty>();
但这会产生错误:
Using the generic type 'IProperty<T>' requires 1 type arguments
但是我还不知道该列表的类型,所以我尝试添加一种<object>
List<IProperty<object>> _myProperties = new List<IProperty<object>>();
然后编译。然后,我可以将项目添加到集合中,但是我需要将它们强制转换为IProperty<object>
,这很丑陋,老实说,我不确定自己在做什么。
BooleanProperty boolProp = new BooleanProperty();
// boolProp.getValue() => returns a bool
DateTimeProperty dateTimeProp = new DateTimeProperty();
// dateTimeProp.getValue(); => returns a DateTime
_myProperties.Add((IProperty<object>)boolProp);
_myProperties.Add((IProperty<object>)dateTimeProp);