简体   繁体   中英

base class with abstract method returning T

I am defining a base class that has a method that returns type T. The classes the derive from this can return different types.

public abstract class BaseTransport
{
    public abstract T Properties<T>();
}

public class Car : BaseTransport
{
    public override T Properties<T>()
    {
       return new CarProperties();
    }
}

public class Bike : BaseTransport
{
    public override T Properties<T>()
    {
       return new BikeProperties();
    }
}

If it makes a difference the return BikeProperties and CarProperties are both derived from BaseProperties.

Is this possible to do? Just trying to enforce the implementation of a method...

You don't want generic methods, you want a generic class:

public abstract class BaseTransport<T> where T : BaseProperties
{
    public abstract T Properties();
}

public class Car : BaseTransport<CarProperties>
{
    public override CarProperties Properties()
    {
       return new CarProperties();
    }
}

public class Bike : BaseTransport<BikeProperties>
{
    public override BikeProperties Properties()
    {
       return new BikeProperties();
    }
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM