উত্তর:
টিসিকে থেকে উত্তর ব্যবহার করে এটি নিম্নলিখিত লিনকুই কোয়েরি দিয়েও করা যেতে পারে:
bool isBar = foo.GetType().GetInterfaces().Any(x =>
x.IsGenericType &&
x.GetGenericTypeDefinition() == typeof(IBar<>));
typeof(IBar<,,,>)
স্থানধারীদের মতো কমা দিয়ে
আপনাকে উত্তরাধিকার গাছের মধ্য দিয়ে যেতে হবে এবং গাছের প্রতিটি শ্রেণীর জন্য সমস্ত ইন্টারফেসগুলি খুঁজে পেতে হবে এবং ইন্টারফেসটি জেনারিক হলেtypeof(IBar<>)
কল করার ফলাফলের সাথে তুলনা করতে হবে । সব কিছু অবশ্যই বেদনাদায়ক, অবশ্যই।Type.GetGenericTypeDefinition
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;
}
}
একটি সহায়ক পদ্ধতি এক্সটেনশন হিসাবে
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);
}
ব্যবহারের উদাহরণ:
var testObject = new Dictionary<int, object>();
result = testObject.GetType().Implements(typeof(IDictionary<int, object>)); // true!
আমি @ জেনেরিক প্রোগ্রামার এক্সটেনশন পদ্ধতির কিছুটা সহজ সংস্করণ ব্যবহার করছি:
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));
}
ব্যবহার:
if (!featureType.Implements<IFeature>())
throw new InvalidCastException();
আপনাকে জেনেরিক ইন্টারফেসের একটি নির্মিত ধরণের বিরুদ্ধে পরীক্ষা করতে হবে।
আপনাকে এরকম কিছু করতে হবে:
foo is IBar<String>
কারণ IBar<String>
যে নির্মিত ধরনের প্রতিনিধিত্ব করে। আপনাকে এটি করার কারণ হ'ল কারণ যদি T
আপনার চেকটিতে অপরিজ্ঞাত থাকে তবে সংকলকটি আপনার অর্থ IBar<Int32>
বা না তা জানে না IBar<SomethingElse>
।
সম্পূর্ণরূপে টাইপ সিস্টেম মোকাবেলা করার, আমি আপনাকে হ্যান্ডেল পুনরাবৃত্তির যেমন প্রয়োজন মনে IList<T>
: ICollection<T>
: IEnumerable<T>
, যা ছাড়া আপনি কি জানেন না যে IList<int>
শেষ পর্যন্ত কার্যকরী 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));
}
সবার আগে public class Foo : IFoo<T> {}
সংকলন করা হয় না কারণ টি এর পরিবর্তে আপনার কোনও শ্রেণি নির্দিষ্ট করা দরকার, তবে ধরে নিচ্ছেন যে আপনি কিছু পছন্দ করেনpublic class Foo : IFoo<SomeClass> {}
তাহলে আপনি যদি করেন
Foo f = new Foo();
IBar<SomeClass> b = f as IBar<SomeClass>;
if(b != null) //derives from IBar<>
Blabla();
আপনি যদি একটি এক্সটেনশন পদ্ধতি চান যা জেনেরিক বেস ধরণের পাশাপাশি ইন্টারফেসগুলিকে সমর্থন করে, আমি এসডুপ্লয়ের উত্তরটি প্রসারিত করেছি:
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);
}
প্রকারটি জেনেরিক ধরণের উত্তরাধিকার সূত্রে প্রাপ্ত বা প্রয়োগ করে কিনা তা পরীক্ষা করার পদ্ধতি:
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));
}
নিম্নলিখিত এক্সটেনশন চেষ্টা করুন।
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);
}
এটি পরীক্ষা করার জন্য। সৃষ্টি
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 { }
এবং পরীক্ষা পদ্ধতি
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>)));
}
নিম্নলিখিত কোনও ভুল হওয়া উচিত নয়:
bool implementsGeneric = (anObject.Implements("IBar`1") != null);
অতিরিক্ত ক্রেডিটের জন্য আপনি যদি আপনার আইবার ক্যোয়ারির সাথে একটি নির্দিষ্ট জেনেরিক-টাইপ-প্যারামিটার সরবরাহ করতে চান তবে অ্যামবিগিউস ম্যাচএক্সেপশন ধরতে পারেন।
bool implementsGeneric = (anObject.Implements(typeof(IBar<>).Name) != null);