欢迎来到天天文库
浏览记录
ID:37551536
大小:585.31 KB
页数:87页
时间:2019-05-12
《编写问题域类定义》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、第5章编写问题域类定义课程回顾UML三层设计第5章编写问题域类定义开发PD类定义测试PD类编写构造函数方法编写toString方法为Slip类编写定义编写自定义方法格式化输出使用静态变量和静态方法重载方法处理异常第5章编写问题域类定义编写规范类名:大写字母开头,Customer属性名:小写字母开头,但后面的字可用大写字母,phoneNo方法名:动词在前,名次在后,小写字母开头,setAddress第5章编写问题域类定义CustomernameaddressphoneNoDockdockIDlocationelectri
2、citywateraddSliptoDockLeaseamountstartDateendDatecalculateFee()SlipslipIDwidthslipLengthBoatstateRegistrationNoboatLengthmanufacturerYear10..10..10..11..*10..10..1首先以客户类为例子定义Customer类定义属性:privateStringname;privateStringaddress;privateStringphoneNo;定义方法:get方法,set
3、方法。5.1开发PD类定义5.1开发PD类定义Java类的结构定义publicclassCustomer{//attributedefinitionsprivateStringname;privateStringaddress;privateStringphoneNo;//get方法publicStringgetName(){returnname;}publicStringgetAddress(){returnaddress;}publicStringgetPhoneNo(){returnphoneNo;}5.1开发P
4、D类定义//set方法publicvoidsetName(StringnewName){name=newName;}publicvoidsetAddress(StringnewAddress){address=newAddress;}publicvoidsetPhoneNo(StringnewPhoneNo){phoneNo=newPhoneNo;}}5.1开发PD类定义5.1开发PD类定义publicclassTesterOne{publicstaticvoidmain(Stringargs[]){Customerf
5、irstCustomer=newCustomer();//createinstance//invokesetaccessorstopopulateattributesfirstCustomer.setName("Eleanor");firstCustomer.setAddress("Atlanta");firstCustomer.setPhoneNo("123-4567");//definevariablestocontainattributevaluesretrievedStringcustomerName,cust
6、omerAddress,customerPhoneNo;5.2测试PD类//invokegetaccessorstoretrieveattributevaluescustomerName=firstCustomer.getName();customerAddress=firstCustomer.getAddress();customerPhoneNo=firstCustomer.getPhoneNo();//displaytheretrievedattributevaluesSystem.out.println("Th
7、enameis"+customerName);System.out.println("Theaddressis"+customerAddress);System.out.println("Thephoneis"+customerPhoneNo);}}5.2测试PD类TestOnefirstCustomerSystem.outnewCustomer()setNaame(“Eleanor”)setAddress(“Atlanta”)setPhoneNo(“12345678”)getName()customerNameget
8、Address()customerAddressgetPhoneNo()customerPhoneNoPrintln(“TheNameis:”+customerName)Println(“Thephoneis:”+customerPhoneNo)Println(“Theaddressis:”+customerAddress)Tes
此文档下载收益归作者所有