Odpowiedzi:
Korzystając z odpowiedzi TcKs, można to zrobić również za pomocą następującego zapytania LINQ:
bool isBar = foo.GetType().GetInterfaces().Any(x =>
x.IsGenericType &&
x.GetGenericTypeDefinition() == typeof(IBar<>));
typeof(IBar<,,,>)
przecinki zachowują się jak symbole zastępcze
Musisz przejść przez drzewo dziedziczenia i znaleźć wszystkie interfejsy dla każdej klasy w drzewie, i porównać typeof(IBar<>)
z wynikiem wywołania, Type.GetGenericTypeDefinition
jeśli interfejs jest ogólny. Z pewnością jest to trochę bolesne.
Zobacz tę odpowiedź i te, aby uzyskać więcej informacji i kod.
public interface IFoo<T> : IBar<T> {}
public class Foo : IFoo<Foo> {}
var implementedInterfaces = typeof( Foo ).GetInterfaces();
foreach( var interfaceType in implementedInterfaces ) {
if ( false == interfaceType.IsGeneric ) { continue; }
var genericType = interfaceType.GetGenericTypeDefinition();
if ( genericType == typeof( IFoo<> ) ) {
// do something !
break;
}
}
Jako rozszerzenie metody pomocniczej
public static bool Implements<I>(this Type type, I @interface) where I : class
{
if(((@interface as Type)==null) || !(@interface as Type).IsInterface)
throw new ArgumentException("Only interfaces can be 'implemented'.");
return (@interface as Type).IsAssignableFrom(type);
}
Przykładowe użycie:
var testObject = new Dictionary<int, object>();
result = testObject.GetType().Implements(typeof(IDictionary<int, object>)); // true!
Używam nieco prostszej wersji metody rozszerzenia @GenericProgrammers:
public static bool Implements<TInterface>(this Type type) where TInterface : class {
var interfaceType = typeof(TInterface);
if (!interfaceType.IsInterface)
throw new InvalidOperationException("Only interfaces can be implemented.");
return (interfaceType.IsAssignableFrom(type));
}
Stosowanie:
if (!featureType.Implements<IFeature>())
throw new InvalidCastException();
Musisz sprawdzić w stosunku do skonstruowanego typu interfejsu ogólnego.
Będziesz musiał zrobić coś takiego:
foo is IBar<String>
ponieważ IBar<String>
reprezentuje ten skonstruowany typ. Powodem, dla którego musisz to zrobić, jest to, że jeśli nie T
jest zdefiniowany w czeku, kompilator nie wie, czy masz na myśli IBar<Int32>
czy IBar<SomethingElse>
.
Aby całkowicie poradzić sobie z systemem typów, myślę, że musisz poradzić sobie z rekurencją, np IList<T>
. ICollection<T>
:: IEnumerable<T>
, bez której nie wiedziałbyś, że IList<int>
ostatecznie się implementuje IEnumerable<>
.
/// <summary>Determines whether a type, like IList<int>, implements an open generic interface, like
/// IEnumerable<>. Note that this only checks against *interfaces*.</summary>
/// <param name="candidateType">The type to check.</param>
/// <param name="openGenericInterfaceType">The open generic type which it may impelement</param>
/// <returns>Whether the candidate type implements the open interface.</returns>
public static bool ImplementsOpenGenericInterface(this Type candidateType, Type openGenericInterfaceType)
{
Contract.Requires(candidateType != null);
Contract.Requires(openGenericInterfaceType != null);
return
candidateType.Equals(openGenericInterfaceType) ||
(candidateType.IsGenericType && candidateType.GetGenericTypeDefinition().Equals(openGenericInterfaceType)) ||
candidateType.GetInterfaces().Any(i => i.IsGenericType && i.ImplementsOpenGenericInterface(openGenericInterfaceType));
}
Po pierwsze public class Foo : IFoo<T> {}
nie kompiluje się, ponieważ musisz podać klasę zamiast T, ale zakładając, że robisz coś podobnegopublic class Foo : IFoo<SomeClass> {}
to jeśli to zrobisz
Foo f = new Foo();
IBar<SomeClass> b = f as IBar<SomeClass>;
if(b != null) //derives from IBar<>
Blabla();
Jeśli chciałeś metody rozszerzenia, która obsługiwałaby ogólne typy podstawowe oraz interfejsy, rozwinąłem odpowiedź sduplooy:
public static bool InheritsFrom(this Type t1, Type t2)
{
if (null == t1 || null == t2)
return false;
if (null != t1.BaseType &&
t1.BaseType.IsGenericType &&
t1.BaseType.GetGenericTypeDefinition() == t2)
{
return true;
}
if (InheritsFrom(t1.BaseType, t2))
return true;
return
(t2.IsAssignableFrom(t1) && t1 != t2)
||
t1.GetInterfaces().Any(x =>
x.IsGenericType &&
x.GetGenericTypeDefinition() == t2);
}
Metoda sprawdzania, czy typ dziedziczy lub implementuje typ ogólny:
public static bool IsTheGenericType(this Type candidateType, Type genericType)
{
return
candidateType != null && genericType != null &&
(candidateType.IsGenericType && candidateType.GetGenericTypeDefinition() == genericType ||
candidateType.GetInterfaces().Any(i => i.IsGenericType && i.GetGenericTypeDefinition() == genericType) ||
candidateType.BaseType != null && candidateType.BaseType.IsTheGenericType(genericType));
}
Wypróbuj następujące rozszerzenie.
public static bool Implements(this Type @this, Type @interface)
{
if (@this == null || @interface == null) return false;
return @interface.GenericTypeArguments.Length>0
? @interface.IsAssignableFrom(@this)
: @this.GetInterfaces().Any(c => c.Name == @interface.Name);
}
Aby to przetestować. Stwórz
public interface IFoo { }
public interface IFoo<T> : IFoo { }
public interface IFoo<T, M> : IFoo<T> { }
public class Foo : IFoo { }
public class Foo<T> : IFoo { }
public class Foo<T, M> : IFoo<T> { }
public class FooInt : IFoo<int> { }
public class FooStringInt : IFoo<string, int> { }
public class Foo2 : Foo { }
i metoda testowa
public void Test()
{
Console.WriteLine(typeof(Foo).Implements(typeof(IFoo)));
Console.WriteLine(typeof(FooInt).Implements(typeof(IFoo)));
Console.WriteLine(typeof(FooInt).Implements(typeof(IFoo<>)));
Console.WriteLine(typeof(FooInt).Implements(typeof(IFoo<int>)));
Console.WriteLine(typeof(FooInt).Implements(typeof(IFoo<string>)));
Console.WriteLine(typeof(FooInt).Implements(typeof(IFoo<,>)));
Console.WriteLine(typeof(FooStringInt).Implements(typeof(IFoo<,>)));
Console.WriteLine(typeof(FooStringInt).Implements(typeof(IFoo<string,int>)));
Console.WriteLine(typeof(Foo<int,string>).Implements(typeof(IFoo<string>)));
}
Nie powinno być nic złego, co następuje:
bool implementsGeneric = (anObject.Implements("IBar`1") != null);
Aby uzyskać dodatkowy kredyt, możesz złapać wyjątek AmbiguousMatchException, jeśli chcesz podać konkretny parametr typu ogólnego w zapytaniu IBar.
bool implementsGeneric = (anObject.Implements(typeof(IBar<>).Name) != null);