Requiring Inherited Types in Generic Constraints

A generic class can specify that its generic parameter must inherit a type.  However, there is no obvious way in general to prevent clients from passing the base type itself.

For example, take the following set of types:

abstract class Entity  { }

class Person : Entity { }
class Boat : Entity { }
class Car : Entity { }

class Repository<TEntity> where TEntity : Entity { }

This allows the type Repository<Entity>, which doesn’t make logical sense.

In this particular case, we could prevent that by changing the generic constraint to where TEntity : Entity, new().  Since the base Entity class is abstract, that would disallow a Repository<Entity>.  However,if the concrete entities also  don’t have default constructors, this wouldn’t work.  Similarly, had the base type been an interface, we could add a : class constraint.

There is an (somewhat) ugly hack that can be used to prevent parameterizations of the base class in arbitrary cases (as long as you control every type involved):

abstract class Entity  { }
interface IConcreteEntity { }    //Marker interface

class Person : Entity, IConcreteEntity { }
class Boat : Entity, IConcreteEntity { }
class Car : Entity, IConcreteEntity { }

class Repository<TEntity> 
      where TEntity : Entity, IConcreteEntity { }

Specifically, we can add a marker interface which is implemented by all concrete implementations of the base type.  We can then constrain a generic parameter to inherit both the base type and the marker interface.  Since the base class itself does implement the marker interface, it will not be valid as a parameter. 
Note that the marker interface must be implemented (perhaps indirectly) by every single concrete implementation.

9 comments:

This news is important. Kaya

I recommend you to read https://vpn-lab.com/expressvpn-review/ if you want to use VPN. Here you can read useful review

This post is really informative and you have posted such precious and informative article which gave me lot of information. I hope that you will keep it up and we will have more informative and helping news from you.
Play now friv oyunları for free!

This comment has been removed by the author.

Given the time constraints, it can be quite challenging for some students to complete all assignments on time. Our service Grademiners does everything promptly and on time! Order your essay now and receive it within 48 hours!

Thanks for share your information. Your blog has been really great. I learned a lot from here. I hope you will give us such more awesome blogs.
Moviesflix

Stay up the good work! You know, many people are looking round for this info, you could aid them greatly.
먹튀검증
경마사이트

Very nice! The article has actually peaks my interest. I really enjoyed reading this post.
Loudoun Traffic Lawyer is a highly skilled and experienced legal professional specializing in traffic law matters in Loudoun County, Virginia. With in-depth knowledge of the local traffic regulations and extensive expertise in handling traffic-related cases, they provide comprehensive legal services and representation to individuals dealing with various traffic offenses and violations.

บทความ pg slot แหล่งรวมบทความสล็อต เว็บไซต์พนันสล็อตออนไลน์ ที่ได้รับความนิยมที่มาพร้อมทั้ง PG Slot เกมสล็อตออนไลน์ ประสิทธิภาพ น่าเล่นที่ใครๆก็ต่างมีความสนใจอย่างยิ่ง

Post a Comment