JAVA循环获取值
已知某实体类属性分别以英文数字one、two、three、...ten命名,提供了set、get的方法,求如何通过循环分别获取getOne()、getTwo()、getT...
已知某实体类属性分别以英文数字one、two、three、...ten命名,提供了set、get的方法,求如何通过循环分别获取getOne()、getTwo()、getThree()、...getTen()的值
for(int i=1;i<=10;i++){
test.get(这里填One、Two、Three、...Ten)()
} 展开
for(int i=1;i<=10;i++){
test.get(这里填One、Two、Three、...Ten)()
} 展开
展开全部
这个只能先把实体放到list里面,然后遍历就一次输出了。
List countList=new ArrayList();
countList.add(one);
...
countList.add(ten);
for(int i=0;i<countList.size();i++){
test = countList.get(i);
}
List countList=new ArrayList();
countList.add(one);
...
countList.add(ten);
for(int i=0;i<countList.size();i++){
test = countList.get(i);
}
追问
能不能通过
String num="";
switch{
case 1:
num="One";
break;
........
}
test.get+num() 这里无法处理
追答
不可以的。你天真了。
java中的getter和setter是预先生成好的,没有你这么用的。
展开全部
采用java反射机制,遍历这个对象的所有get方法就可以
代码如下:
public class User {
private int age;
private String name;
private int sex;
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getSex() {
return sex;
}
public void setSex(int sex) {
this.sex = sex;
}
User(int age,int sex,String name){
this.age=age;
this.sex=sex;
this.name=name;
}
public static void main(String[] args) {
User u=new User(20, 1, "test");
Class c=u.getClass();
Method[] ms=c.getDeclaredMethods();
for(Method m:ms){
String name=m.getName();
if(name.startsWith("get")){
try {
Object r=m.invoke(u, null);
System.out.println(r);
} catch (IllegalAccessException e) {
e.printStackTrace();
} catch (IllegalArgumentException e) {
e.printStackTrace();
} catch (InvocationTargetException e) {
e.printStackTrace();
}
}
}
}
}
代码如下:
public class User {
private int age;
private String name;
private int sex;
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getSex() {
return sex;
}
public void setSex(int sex) {
this.sex = sex;
}
User(int age,int sex,String name){
this.age=age;
this.sex=sex;
this.name=name;
}
public static void main(String[] args) {
User u=new User(20, 1, "test");
Class c=u.getClass();
Method[] ms=c.getDeclaredMethods();
for(Method m:ms){
String name=m.getName();
if(name.startsWith("get")){
try {
Object r=m.invoke(u, null);
System.out.println(r);
} catch (IllegalAccessException e) {
e.printStackTrace();
} catch (IllegalArgumentException e) {
e.printStackTrace();
} catch (InvocationTargetException e) {
e.printStackTrace();
}
}
}
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询