Java類的組成
42 2017-05-23
Java類的組成
我想說的是,Java運(yùn)用就是一個(gè)類又一個(gè)類。Java是面向目標(biāo)的言語,目標(biāo)都是由類實(shí)例化而來。一個(gè)Java運(yùn)用,不管簡略仍是雜亂,都是由若干個(gè)Java類組成的。因而,關(guān)于初學(xué)者,先知道Java類的組成是必要的。
Java類的組成首要有3有些:數(shù)據(jù)成員、結(jié)構(gòu)辦法、辦法成員。
首要看下邊的代碼,是一個(gè)簡略的Java類:
packagecom.csst.vo;
publicclassCustomer{
//1.數(shù)據(jù)成員
privateStringcustname;
privateStringpwd;
privateIntegerage;
//2.結(jié)構(gòu)辦法
publicCustomer(){
}
publicCustomer(Stringcustname,Stringpwd){
this.custname=custname;
this.pwd=pwd;
}
publicCustomer(Stringcustname,Stringpwd,Integerage){
super();
this.custname=custname;
this.pwd=pwd;
this.age=age;
}
//3.辦法成員
publicStringgetCustname(){
returncustname;
}
publicvoidsetCustname(Stringcustname){
this.custname=custname;
}
publicStringgetPwd(){
returnpwd;
}
publicvoidsetPwd(Stringpwd){
this.pwd=pwd;
}
publicIntegergetAge(){
returnage;
}
publicvoidsetAge(Integerage){
this.age=age;
}
掃一掃
獲取更多福利
獵學(xué)網(wǎng)企業(yè)微信
獵學(xué)網(wǎng)訂閱號(hào)
獵學(xué)網(wǎng)服務(wù)號(hào)