定义类和创建对象
设计一个活期存折类,其中属性包括姓名name(string类型),身份证号indentity-Card(string类型),家庭住址homeAddress(string类型),钱数money(double类型),定义显示存折人基本信息的show方法。再定义一个测试类,在main方法中使用活期存折类创建一个活期存折对象,其属性值分别为张三(姓名),1234567890(身份证号),教育学院(地址),1000(钱数),最后显示该存折的基本信息。
定义类和创建对象
设计一个活期存折类,其中属性包括姓名name(string类型),身份证号indentity-Card(string类型),家庭住址homeAddress(string类型),钱数money(double类型),定义显示存折人基本信息的show方法。再定义一个测试类,在main方法中使用活期存折类创建一个活期存折对象,其属性值分别为张三(姓名),1234567890(身份证号),教育学院(地址),1000(钱数),最后显示该存折的基本信息。
class Discount { private String name; private String identifyCard; private String homeAddress; private double money; public Discount(String name,String identifyCard,String homeAddress,double money) { this.name=name; this.identifyCard=identifyCard; this.homeAddress=homeAddress; this.money=money; } void show() { System.out.println(this.name); System.out.println(this.identifyCard); System.out.println(this.homeAddress); System.out.println(this.money); } } class test { public static void main(String ag[]) { Discount d=new Discount("张三","1234567890","教育学院","1000"); d.show(); } }
我用的构造函数,你看看
接着楼上写
public String show(){
return this.Name + "\n" + this.IdentityCard +"\n" + this.HomeAddress + "\n" + this.Money }
Discount discount = new Discount(); discount.setName("张三"); discount.setHomeAddress("教育学院"); discount.setIdentifyCard("1234567890"); discount.setMoney(1000); System.out.println(discount.show());