阅读量:4
在Java中,多个类的运行方法有以下几种:
- 在一个类中创建其他类的对象,并通过调用对象的方法来运行其他类的代码。
public class MainClass { public static void main(String[] args) { OtherClass obj = new OtherClass(); obj.method(); } } class OtherClass { public void method() { // 运行的代码 } }
- 将其他类的方法定义为静态方法,然后直接通过类名调用。
public class MainClass { public static void main(String[] args) { OtherClass.method(); } } class OtherClass { public static void method() { // 运行的代码 } }
- 使用继承和多态的方式,在一个类中创建其他类的对象,并通过父类引用调用子类的方法。
public class MainClass { public static void main(String[] args) { ParentClass obj = new ChildClass(); obj.method(); } } class ParentClass { public void method() { // 运行的代码 } } class ChildClass extends ParentClass { @Override public void method() { // 运行的代码 } }
这些都是Java中多个类运行的常用方法,具体使用哪种方法取决于具体的应用场景和需求。