在Java中,要调用其他类中的方法,需要先创建该类的对象,然后通过对象调用方法。
示例代码如下:
// 其他类 public class OtherClass { public void otherMethod() { System.out.println("调用了其他类中的方法"); } } // 主类 public class MainClass { public static void main(String[] args) { // 创建OtherClass对象 OtherClass other = new OtherClass(); // 调用OtherClass对象的方法 other.otherMethod(); } }
在示例中,首先定义了一个名为OtherClass
的类,其中包含了一个名为otherMethod
的方法。然后在主类MainClass
中,先创建了OtherClass
的对象other
,然后通过other
对象调用了otherMethod
方法,实现了对其他类中方法的调用。执行主类的main
方法后,会在控制台输出"调用了其他类中的方法"。