标签:div style void rac turn ring test hid public
1 public void setName(String str) 2 { 3 name=str; 4 } 5 public void setAge(int a) //set方法需要在括号中定义数据类型 6 { 7 if(a>0) 8 age=a; 9 } 10 public String getName() //获取方法需要定义返回的数据类型 11 { 12 return name; 13 } 14 public int getAge() //获取方法需要定义返回的数据类型 15 { 16 return age; 17 } 18 } 19 class Test 20 { 21 public static void main(String args[]) 22 { 23 Person p=new Person(); 24 p.setName("qxw"); 25 p.setAge(-20); 26 p.talk();
标签:div style void rac turn ring test hid public
原文地址:http://www.cnblogs.com/python3-study/p/6498510.html