This question shows research effort; it is useful and clear
0
This question does not show any research effort; it is unclear or not useful
Bookmark this question.
Show activity on this post.
如果在 C# 中给定相同的名称和相同的命名空间,您能否引用(不传递对象)在您的 main 中创建的另一个类的对象?
就像说你有 Main、A 类和 B 类。在 Main 你有“A ap = new A();” 如果您创建“A ap = new A();” 在 B 类内部,这两个对象会引用对象 A 的同一个实例吗?因此,如果您更改主对象“ap”中的值,它也会更改 B 类中对象“ap”的相同变量。基本上它们是否指向堆中 A 类的相同实例?