编辑:我找到了关于C#和COM的相对页面:How does the C# compiler detect COM types?
在标题中,当我将C#中的程序转换为IronPython时,我无法创建类的实例。
最初的C#程序:IAgilent34980A2 host = new Agilent34980A();
重写的IronPython计划:host = Agilent34980A()
C#程序运行良好,而IronPython程序收到错误:
TypeError:无法创建Agilent34980A的实例,因为它是抽象的
实际上Agilent34980A()是一个接口,所以错误是合理的。
我的问题是为什么它在C#中有效?该实例也无法在C#中创建,这是一个接口,对吗?
另外:
C#代码来自测试机器标记。
源代码的IAgilent34980A2定义部分如下:
使用Ivi.Driver.Interop;
使用System;
使用System.Runtime.InteropServices;
命名空间Agilent.Agilent34980A.Interop
{
// IAgilent34980A interface. [TypeLibType(256)] [Guid("07678A7D-048A-42A6-8884-6CC8C575BD1F")] [InterfaceType(1)] public interface IAgilent34980A2 : IIviDriver { IAgilent34980AMeasurement Measurement { get; } IAgilent34980AVoltage Voltage { get; } // There are some similar functions following. }
}
Agilent34980A定义部分
使用System.Runtime.InteropServices;
命名空间Agilent.Agilent34980A.Interop
{
// Agilent34980A driver class. [Guid("07678A7D-048A-42A6-8884-6CC8C575BD1F")] [CoClass(typeof(Agilent34980AClass))] public interface Agilent34980A : IAgilent34980A2 { }
}
和IIviDriver定义部分
使用System;
使用System.Runtime.InteropServices;
命名空间Ivi.Driver.Interop
{
// IVI Driver root interface [TypeLibType(256)] [InterfaceType(1)] [Guid("47ED5184-A398-11D4-BA58-000064657374")] public interface IIviDriver { // Pointer to the IIviDriverOperation interface [DispId(1610678272)] IIviDriverOperation DriverOperation { get; } // Pointer to the IIviDriverIdentity interface [DispId(1610678273)] IIviDriverIdentity Identity { get; } // There are some similar functions following. }
答案 0 :(得分:1)
Actualy,您可以通过具有[CoClass]
和[Guid]
属性的co-class创建一个接口实例。
允许你:
[Guid("000208D5-0000-0000-C000-000000000046")] // Anything
[CoClass(typeof(Foo))]
[ComImport]
public interface IFoo { void Bar(); }
public class Foo : IFoo { public void Bar() { return; } }
void Main()
{
IFoo instance = new IFoo();
}
答案 1 :(得分:0)
您无法在C#中创建接口实例。 示例代码:
void Main()
{
var test = new ITest();
}
interface ITest {
void Test();
}
会出现编译错误:
Cannot create an instance of the abstract class or interface "UserQuery.ITest"
问题在于您的类未正确声明为库中的接口。
代码如:
IAgilent34980A host = new Agilent34980();
有效,因为它意味着“变量'主机'是对某个对象的引用,它是实现IAgilent34980A接口的类的实例”。 C#非平凡对象是引用类型,因此,这是有效的。