Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有两个类,A 类和 B 类。在 BI 类中创建了一个构造函数。在 AI 类中创建了 onresume 方法。从 AI 类的 onresume 方法想调用 B 类的构造函数。我怎样才能做到这一点?请指导我。
提前致谢
当您在 class的onResume中创建 class 的new对象时,它会自动为其对象调用 class 的构造函数。BAB
new
B
A
例如:
B obj = new B(); //the 'new' keyword will call the constructor itself
如果两个类都是公共的并且属于同一个包,则可以使用代码在B类中调用A类的构造函数,
B objb = new B();
否则,您需要从 A 类扩展 B 类。