代码拉取完成,页面将自动刷新
package text;
import java.util.ArrayList;
interface IParking{
void print();
boolean addCar(int carType);
public static IParams parse() throws Exception{
return new ParkingSystem();
}
}
interface IParams{
int getBig();
int getMedium();
int getSmall();
ArrayList<Integer> getPlanParking();
}
public class ParkingSystem implements IParking,IParams{
private ArrayList<Integer> num;
public ParkingSystem(int...nums) {
num = new ArrayList<Integer>();
for(int i = 0;i < nums.length;i++) {
num.add(nums[i]);
}
}
public void print() {
for(int i = 0;i<num.size();i++) {
System.out.print(num.get(i));
}
System.out.println();
}
public boolean addCar(int carType) {
if(num.add(carType)) {
return true;
}
return false;
}
public int getBig() {
return 1;
}
public int getMedium() {
return 2;
}
public int getSmall() {
return 3;
}
public ArrayList<Integer> getPlanParking(){
return num;
}
public static void main(String args[]) throws Exception{
IParams params = IParking.parse();
ParkingSystem ps = new ParkingSystem(params.getBig(),params.getSmall(),params.getMedium());
ArrayList<Integer> plan = ps.getPlanParking();
for(int i = 0;i<plan.size();i++) {
ps.addCar(plan.get(i));
}
ps.print();
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。