在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。