class Phone { String brand; String style; double price; int diskSize;
public Phone(){
} public Phone(String brand,String style,double price,int diskSize){ this.brand = brand; this.style = style; this.price = price; this.diskSize = diskSize; } public String showInfo() { return "Phone{" + "brand='" + brand + '\'' + ", style='" + style + '\'' + ", price=" + price + ", diskSize=" + diskSize + '}'; } }
public class PhoneTest { public static void main(String[] args) { Phone phone = new Phone("华为","P30 pro",3999.0,128); System.out.println(phone.showInfo()); } }
|