วิธีการตรวจสอบว่าชนิดที่ใช้ประเภทอินเตอร์เฟสทั่วไปที่เฉพาะเจาะจง


226

สมมติคำจำกัดความประเภทต่อไปนี้:

public interface IFoo<T> : IBar<T> {}
public class Foo<T> : IFoo<T> {}

ฉันจะทราบได้อย่างไรว่าประเภทนั้นFooใช้อินเทอร์เฟซทั่วไปIBar<T>เมื่อมีชนิด mangled เท่านั้นที่ใช้ได้

คำตอบ:


387

โดยใช้คำตอบจาก TcK ก็สามารถทำได้ด้วยแบบสอบถาม LINQ ต่อไปนี้:

bool isBar = foo.GetType().GetInterfaces().Any(x =>
  x.IsGenericType &&
  x.GetGenericTypeDefinition() == typeof(IBar<>));

1
นี่เป็นทางออกที่หรูหรามาก! คนอื่น ๆ ที่ฉันเคยเห็นใน SO ใช้ foreach loops หรือ LINQ query อีกต่อไป โปรดทราบว่าในการใช้สิ่งนี้คุณต้องมี. NET Framework 3.5
Daniel T.

7
ฉันขอแนะนำให้คุณทำสิ่งนี้เป็นวิธีการขยาย la bit.ly/ccza8B - จะทำความสะอาดสิ่งนี้ได้ดีมาก!
Brad Heller

1
ขึ้นอยู่กับความต้องการของคุณคุณอาจพบว่าคุณต้องกลับมาใช้งานอินเทอร์เฟซที่ส่งคืน
เซบาสเตียนกู๊ด

4
ฉันจะบอกว่าสิ่งนี้ควรได้รับการติดตั้งภายใน. net ให้ดีขึ้น ... ในฐานะแกนหลัก ... เช่น member.Implements (IBar) หรือ CustomType.Implements (IBar) หรือดีกว่าโดยใช้คำหลัก "คือ" .. .. ฉันกำลังสำรวจ c # และฉันรู้สึกผิดหวังเล็กน้อยใน. net ตอนนี้ ...
Sofija

2
การเพิ่มเล็กน้อย: หาก IBar มีประเภททั่วไปหลายประเภทคุณต้องระบุเช่นนี้: typeof(IBar<,,,>)ด้วยเครื่องหมายจุลภาคที่ทำหน้าที่เหมือนตัวยึดตำแหน่ง
Rob Von Nesselrode

33

คุณต้องขึ้นไปบนแผนผังการถ่ายทอดและค้นหาอินเทอร์เฟซทั้งหมดสำหรับแต่ละคลาสในแผนผังและเปรียบเทียบtypeof(IBar<>)กับผลลัพธ์ของการโทรType.GetGenericTypeDefinition หากอินเตอร์เฟสเป็นแบบทั่วไป มันเจ็บปวดเล็กน้อยอย่างแน่นอน

ดูคำตอบนี้และคำเหล่านี้สำหรับข้อมูลเพิ่มเติมและรหัส


ทำไมไม่ลองส่งไปที่ IBar <SomeClass> แล้วตรวจสอบหาค่าว่าง? (ฉันหมายถึงการคัดเลือกนักแสดงด้วย 'แน่นอน')
Pablo Retyk

5
T ไม่เป็นที่รู้จักและไม่สามารถใช้กับประเภทเฉพาะได้
sduplooy

@sduplooy: บางทีฉันอาจจะพลาดบางสิ่งบางอย่างไปไม่ทราบว่า T มันจะรวบรวมชั้นเรียนสาธารณะ Foo: IFoo <T> {}
Pablo Retyk

25
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;
    }
}

2
เนื่องจาก typeof (Foo) ส่งคืนวัตถุ System.Type (อธิบาย Foo) การเรียกใช้ GetType () จะส่งคืนประเภทของ System.Type เสมอ คุณควรเปลี่ยนเป็น typeof (Foo) .GetInterfaces ()
Michael Meadows

9

เป็นส่วนเสริมวิธีการช่วยเหลือ

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!

2
"IsAssignableFrom" เป็นสิ่งที่ฉันกำลังมองหา - ขอบคุณ
Jesper

22
สิ่งนี้ใช้ไม่ได้กับความต้องการของผู้ถามที่ไม่ทราบพารามิเตอร์ประเภททั่วไป จากตัวอย่างของคุณ testObject.GetType (). ดำเนินการ (typeof (IDictionary <,>)); จะกลับเท็จ
ctusch

@ctusch ดังนั้นวิธีการแก้ปัญหาสำหรับที่?
Tohid

5

ฉันใช้วิธีการขยาย @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));
}

การใช้งาน:

    if (!featureType.Implements<IFeature>())
        throw new InvalidCastException();

5
มันยังไม่ทำงานตามความต้องการของคำถามเดิมซึ่งใช้สำหรับอินเทอร์เฟซทั่วไป
nathanchere

4

คุณต้องตรวจสอบกับอินเทอร์เฟซทั่วไปชนิดที่สร้างขึ้น

คุณจะต้องทำสิ่งนี้:

foo is IBar<String>

เพราะIBar<String>เป็นตัวแทนของประเภทที่สร้างขึ้น เหตุผลที่คุณต้องทำเช่นนี้เพราะถ้าTไม่ได้กำหนดในการตรวจสอบของคอมไพเลอร์ไม่ทราบว่าคุณหมายถึงหรือIBar<Int32>IBar<SomethingElse>


4

ที่จะแก้ไขปัญหาระบบการพิมพ์สมบูรณ์ผมคิดว่าคุณต้องจัดการ recursion เช่นIList<T>: ICollection<T>: IEnumerable<T>โดยที่คุณจะไม่ทราบว่าในท้ายที่สุดการดำเนินการIList<int>IEnumerable<>

    /// <summary>Determines whether a type, like IList&lt;int&gt;, implements an open generic interface, like
    /// IEnumerable&lt;&gt;. 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));

    }

3

ประการแรกpublic class Foo : IFoo<T> {}ไม่ได้รวบรวมเพราะคุณต้องระบุชั้นเรียนแทน T แต่สมมติว่าคุณทำสิ่งที่ชอบpublic class Foo : IFoo<SomeClass> {}

ถ้าคุณทำ

Foo f = new Foo();
IBar<SomeClass> b = f as IBar<SomeClass>;

if(b != null)  //derives from IBar<>
    Blabla();

2

ในกรณีที่คุณต้องการวิธีการขยายที่จะสนับสนุนประเภทฐานทั่วไปเช่นเดียวกับส่วนต่อประสานฉันได้ขยายคำตอบของ 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);
    }

1

วิธีการตรวจสอบว่าประเภทสืบทอดหรือใช้ประเภททั่วไป:

   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));
    }

0

ลองใช้ส่วนขยายต่อไปนี้

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>)));
 }

-1

ไม่ควรมีอะไรผิดปกติต่อไปนี้:

bool implementsGeneric = (anObject.Implements("IBar`1") != null);

สำหรับเครดิตพิเศษคุณสามารถใช้ AmbiguousMatchException ได้หากคุณต้องการระบุพารามิเตอร์ประเภททั่วไปด้วยการสืบค้น IBar ของคุณ


ปกติแล้วมันจะดีกว่าถ้าจะหลีกเลี่ยงการใช้ตัวอักษรสตริงถ้าเป็นไปได้ วิธีนี้จะทำให้ยากต่อการ refactor แอปพลิเคชันเนื่องจากการเปลี่ยนชื่ออินเทอร์เฟซ IBar จะไม่เปลี่ยนสตริงตัวอักษรและข้อผิดพลาดจะตรวจพบได้ที่รันไทม์
andyroschy

เท่าที่ฉันมักจะเห็นด้วยกับความคิดเห็นข้างต้นเกี่ยวกับการใช้ 'สายเวท' ฯลฯ นี่ยังเป็นวิธีที่ดีที่สุดที่ฉันพบ ใกล้พอแล้ว - ทดสอบ PropertyType.Name เท่ากับ "IWhething`1"
nathanchere

ทำไมไม่ทำอย่างนี้ล่ะ? bool implementsGeneric = (anObject.Implements(typeof(IBar<>).Name) != null);
Maxime Gélinas
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.