로켓프레시, 올해는 건강 챙기세요!

가이드문구

물통 자바라식

  • 2024-10-31 05:34:39
  • 리뷰(0)

가이드문구

/* 물통 클래스 */ public class WaterBottle { private String brand; private int capacity; private String color; private boolean isBPAFree; // 생성자 public WaterBottle(String brand, int capacity, String color, boolean isBPAFree) { this.brand = brand; this.capacity = capacity; this.color = color; this.isBPAFree = isBPAFree; } // Getter 메서드 public String getBrand() { return brand; } public int getCapacity() { return capacity; } public String getColor() { return color; } public boolean isBPAFree() { return isBPAFree; } // Setter 메서드 public void setBrand(String brand) { this.brand = brand; } public void setCapacity(int capacity) { this.capacity = capacity; } public void setColor(String color) { this.color = color; } public void setBPAFree(boolean isBPAFree) { this.isBPAFree = isBPAFree; } // 상품의 상세 설명을 반환하는 메서드 public String getDetailDescription() { return \

가격·재고는 판매 페이지 기준으로 실시간 변동될 수 있습니다.
최신 정보는 상세 페이지에서 확인하세요.