JAVA如何在方法中调用其他类
时间: 2023-05-22 08:03:19 浏览: 99
的方法?
在JAVA中,可以通过创建其他类的对象,然后使用该对象调用其他类的方法,也可以通过静态方法来调用其他类的方法。例如:
public class MyClass {
public static void main(String[] args) {
// 创建其他类的对象
OtherClass oc = new OtherClass();
// 调用其他类的方法
oc.method();
}
}
class OtherClass {
public void method() {
System.out.println("调用了OtherClass的方法");
}
}
阅读全文