2017-04-20 10 views
0

java로 호텔을 시뮬레이션 한 프로그램을 만들었고이 프로그램에서 Rooms을 생성자로 만들고 최대 2 개의 생성자 필드 (더 비싸다)를 인쇄하려고합니다. 나는 2 가지 가격의 차이를 반환하는 방법을 만드는 방법을 알고 있지만 가장 비싼 것을 인쇄하는 방법을 모르겠다. 여기 나의 코드가있다. 메인 클래스생성자 필드 최대 수 java

String RoomNumber, Category, View; 
    int NumberOfBeds; 
    double Price; 

    Room RoomA = new Room("C101",2,"Standard","Sea",95.89); 



    Scanner sc = new Scanner(System.in); 
    System.out.println("Give room number \n"); 
    RoomNumber=sc.next(); 
    System.out.println("Give number of beds \n"); 
    NumberOfBeds=sc.nextInt(); 
    System.out.println("Give category \n"); 
    Category=sc.next(); 
    System.out.println("Give view \n"); 
    View=sc.next(); 
    System.out.println("Give price \n"); 
    Price=sc.nextDouble(); 

    Room RoomB = new Room(RoomNumber, NumberOfBeds, Category, View, Price); 
    System.out.println(RoomA.toString()); 
    System.out.println(RoomB.toString()); 
    System.out.println(""); //this is the part I am struggling 

이 내 방 클래스

public String RoomNumber; 
public int NumberOfBeds; 
private String Category; 
private String View; 
private double Price; 

    public Room(String RoomNumber, int NumberOfBeds, String Category, String View, double Price){ 
    RoomNumber = this.RoomNumber; 
    NumberOfBeds = this.NumberOfBeds; 
    Category = this.Category; 
    View = this.View; 
    Price = this.Price; 
} 


    public void setRoomNumber(String roomnumber){ 
    this.RoomNumber = roomnumber; 
} 
public String getRoomNumber(){ 
    return this.RoomNumber; 
} 

public void setNumberOfBeds(int numberofbeds){ 
    this.NumberOfBeds = numberofbeds; 
} 
public int getNumberOfBeds(){ 
    return this.NumberOfBeds; 
} 

public void setCategory(String category){ 
    this.Category = category; 
} 
public String getCategory(){ 
    return this.Category; 
} 

public void setView(String view){ 
    this.View = view; 
} 
public String getView(){ 
    return this.View; 
} 

public void setPrice(double price){ 
    this.Price = price; 
} 
public double getPrice(){ 
    return this.Price; 
} 


public double getPriceDifference(double double1, double double2){ 
    if (double1 > double2){ 

     return double1-double2; //and i know that here is the part i must add something 
    }else{ 
     return double2-double1; 
    } 
} 

@Override 
public String toString() { 
    return "Room number:" + this.RoomNumber + ",\n " 
      + "Number of beds:" + this.NumberOfBeds + ",\n " + "Category:" 
      + this.Category + ",\n " + "View:" + this.View + ",\n " + "Price:" + this.Price; 
} 

답변

0

는 비즈니스 로직이기 때문에 나는 가격 차이를 계산하는 방 이외의 방법을 사용하는 것이 좋습니다 것입니다. 방은 데이터 보유자 일뿐입니다. 앞으로는 운영을 확장하는 것이 더 쉬울 것입니다.

private static Room moreExpensiveRoom(Room room1, Room room2){ 
    return room1.getPrice() > room2.getPrice()? room1 : room2; 
} 

가격 차이를 확인하기 위해 당신은 Math.abs() 방법을 사용할 수 있습니다 :

private static double priceDifference(Room room1, Room room2){ 
    return Math.abs(room1.getPrice()- room2.getPrice()); 
} 

당신은 당신이 방 목록을 정렬 할 Comparator를 생성하고 사용할 필요가보다 다음, 두 개 이상의 객실을 비교하고자 할 때 가장 큰 가격으로 그걸 가져 가라. 또는 max()

그리고 마지막으로로 스트림을 사용 : 자바에서 변수 명명 규칙에 대해 읽어 보시기 바랍니다 모든 비 정적 변수는 소문자로 시작해야, 낙타 표기법은 클래스 이름으로 만 예약되어 있습니다.

+0

[PascalCase] ​​(https://en.wikipedia.org/wiki/PascalCase)에 대한 클래스 등. [lowerCamelCase] ​​(https://en.wikipedia.org/wiki/Camel_case) 메소드, 변수 등. – Kayaman

0
public Room getMostExpensive(ArrayList<Room> rooms) { 
    double max = 0d; 
    Room room = null; 
    for (Room room1 : rooms) { 
     if (max < room1.getPrice()) { 
      max = room1.getPrice(); 
      room = room1; 
     } 
    } 
    return room; 
} 

장소이 메인 클래스와 메서드를 호출 할 때 매개 변수로 모든 객실의 목록을 추가