函数是否可以返回未知类型的泛型类的实例?

时间:2013-10-10 15:28:28

标签: c# class generics undefined parameterized

我有一个名为ImageProperty的实用程序类,用于存储特定图像属性的类型和值。

该类型只能是以下枚举值之一:

public enum ImagePropertyType { SIZE, H_RES, V_RES, BIT_COUNT, IS_ALPHA }

值均为不同类型(大小 float float int 布尔)。

我的ImageProperty类的简化形式如下:

public class ImageProperty
{
    private ImagePropertyType type;
    private object value;

    public ImageProperty(ImagePropertyType type, object value)
    {
        this.type = type;
        this.value = value;
    }

    public ImagePropertyType getType()
    {
        return this.type;
    }

    public void setType(ImagePropertyType type)
    {
        this.type = type
    }

    public object getValue()
    {
        return this.value;
    }        

    public void setValue(object value)
    {
        this.value = value;
    }
}

请注意使用 object 获取/设置值(因为类型不同)。

我想让我的类具有通用性,因为我不喜欢使用对象,所以我对类和方法做了一些更改:

public class ImageProperty<T>
{
    ...
    private T value;
    ...
    public ImageProperty(ImagePropertyType type, T value)
    ...
    public T getValue()
    ...
    public void setValue(T value)
    ...
}    

我在另一个类中有一个函数需要根据给定的类型返回ImageProperty的实例。

public ???? getImageProperty(ImagePropertyType type, Bitmap bitMap)
{
    switch(type)
    {     
        case SIZE:
            return new ImageProperty<Size>(type, bitMap.Size);
        case H_RES:
            return new ImageProperty<float>(type, bitMap.HorizontalResolution);
        case V_RES:                            
            return new ImageProperty<float>(type, bitMap.VerticalResolution);
        ...
        ...
    }
}

我不确定该方法的返回类型(因此????)。

我不能只说:

public ImageProperty getImageProperty(ImagePropertyType type, Bitmap bitMap)

因为需要对ImageProperty类进行参数化。

显然,如果值类型总是,让我们说, int 我会将返回类型设置为:

public ImageProperty<int> getImageProperty(ImagePropertyType type, Bitmap bitMap)

有没有办法将getImageProperty的返回类型定义为“任何或未知的参数化值”?

类似的东西:

public ImageProperty<?> getImageProperty(ImagePropertyType type, Bitmap bitMap)

参数化类不是一个好主意,因为我不知道将要返回的值的类型?

我应该只使ImageProperty类非泛型(就像我帖子中的第一个类)并返回使用对象作为返回类型,如果我需要知道值类型我可以使用它来获取它typeof运算?

object value = getImageProperty(ImagePropertyType.SIZE, Bitmap bitMap).getValue();
Type t = typeof(value);

谢谢。

---- UPDATE ---------------------------------

基于Knaģis的建议和进一步阅读,我决定保留原始类,然后创建一个扩展ImageProperty的泛型类:

public class ImageProperty<T> : ImageProperty
{
    private T propertyValue;

    public ImageProperty()
        : base()
    {
    }

    public ImageProperty(ImagePropertyType propertyType, T propertyValue)
        : base(propertyType, propertyValue)
    {
        this.propertyValue = propertyValue;
    }

    public T getPropertyValue()
    {
        return propertyValue;
    }

    public void setPropertyValue(T propertyValue)
    {
        this.propertyValue = propertyValue;
    }
}    
然而,有一件事。我收到一个编译器警告说:

ImageProperty<T>.getPropertyValue() hides inherited member ImageProperty.getPropertyValue(). Use the new keyword if hiding was intended.

我添加了 new 关键字:

public new T getPropertyValue()

奇怪的是,我从来不知道在方法声明中使用的 new 关键字以及它是如何使用的。有人在乎解释吗?


1 个答案:

答案 0 :(得分:1)

在你的情况下,你唯一能做的就是要求方法返回某种类型:

public ImageProperty<T> getImageProperty<T>(ImagePropertyType type, Bitmap bitMap)

// call the method
ImageProperty<int> result = obj.getImageProperty<int>(ImagePropertyType.SIZE, bitmap).

调用者必须知道该类型T,否则编译器将无法理解您的代码。如果你不知道它总是那么你的泛型类必须从非泛型基类继承,然后该方法将返回非泛型类型,以后可以转换为特定的泛型实现。

// class
public class ImageProperty<T> : ImageProperty {}

// and methods that can be used (you can only use one of these unless you rename one)
public ImageProperty<T> getImageProperty<T>(ImagePropertyType type, Bitmap bitMap)
public ImageProperty getImageProperty(ImagePropertyType type, Bitmap bitMap)