来自「一些jsp源代码 内含完整jsp程序 希望大家喜欢!!!!!!!!!!!!!」· 代码 · 共 39 行
TXT
39 行
范例:SetGetPropertytest.Java源代码:
001 public class SetGetPropertytest{
002 private String name=""; //姓名
003 private String sex=""; //性别
004 private String birthday=""; //出生日期
005 private String address=""; //住址
006 private String telephone=""; //联系电话
007 public void setName(String name){
008 this.name=name;
009 }
010 public String getName(){
011 return name;
012 }
013 public void setSex(String sex){
014 this.sex=sex;
015 }
016 public String getSex(){
017 return sex;
018 }
019 public void setBirthday(String birthday){
020 this.birthday=birthday;
021 }
022 public String getBirthday(){
023 return birthday;
024 }
025 public void setAddress(String address){
026 this.address=address;
027 }
028 public String getAddress(){
029 return address;
030 }
031 public void setTelephone(String telephone){
032 this.telephone=telephone;
033 }
034 public String getTelephone(){
035 return telephone;
036 }
037 }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?