我有类A,B,C这样的课程:
//Class A is in Console application that has reference to class library that has class B
public class A
{
public void UseBObject()
{
B BInstance=new B(); // error C is defined in assembly that is not referenced you must add reference that contains C...
}
}
//Class library that reference another library the contains C class
public class B : C
{
public string Name{get;set;}
}
我的问题是,如果B已经引用了C而A引用了B为什么A需要引用C? 这没有意义吗?
答案 0 :(得分:5)
假设类C
定义如下,它定义了一个名为PropertyInC
的属性
public class C
{
public string PropertyInC {get;set;}
}
然后通过B&#39的实例使用C的公共成员。
public void UseBObject()
{
B BInstance=new B();
BInstance.PropertyInC = "Whatever";
}
为什么编译器会知道什么是PropertyInC
?你有什么类型的线索吗?或者编译器如何有机会知道这些属性是否存在?
好吧,您可以说编译器可以使用 AsselblyB(B所在的程序集)的程序集引用找到它,但是不能保证引用的程序集会在同一条路径中或任何地方。如果不存在,它将在运行时失败:)
另请注意,如果您没有继承关系,编译器将允许您编译,但是如果您需要访问b.CMember
,您肯定会添加对C
存在的汇编的引用。
public class B
{
private C CMember{get;set;}//This will compile
public string Name{get;set;}
}
希望这有帮助。
答案 1 :(得分:0)
因为B是C,所以要创建C,A需要知道它,因为它是B的公共表面区域的一部分。