阅读量:8
在Eclipse中,跨包调用方法有以下两种方式:
- 导入包并通过类名调用方法:在调用方法的类中,先导入所需调用方法的类的包,然后通过类名调用方法,例如:
import com.example.otherpackage.OtherClass; public class MyClass { public static void main(String[] args) { OtherClass.otherMethod(); // 调用OtherClass类的静态方法 } }
- 创建对象并调用方法:如果要调用的方法不是静态方法,需要先创建所需调用方法的类的对象,然后通过对象调用方法,例如:
import com.example.otherpackage.OtherClass; public class MyClass { public static void main(String[] args) { OtherClass otherObj = new OtherClass(); otherObj.otherMethod(); // 调用OtherClass类的实例方法 } }
需要注意的是,为了能够跨包调用方法,被调用方法所在的类和方法需要是public可见性。另外,如果被调用方法位于不同的包中,还需要在被调用方法所在的包中将该方法声明为public。