我有一个ParkingLot类和一个Parkingmethod类,我在Parkingmethod类中编写了一些方法。现在我想在ParkingLot课程中调用Parkingmethod课程,我该怎么办? 另外,如果我将一个方法(在此类中调用其他方法)调用到ParkingLot类,是否会调用Parkingmethod类中的其他方法?
public static void main(String[] args){//here is the main method in ParkingLot class
Parkingmethod object = new Parkingmethod();
object.start(*//Should I build a new stage here???*);
Application.launch(args);
}