黑马程序员技术交流社区

标题: 求助 不会这个题 [打印本页]

作者: hanjun    时间: 2015-1-15 23:59
标题: 求助 不会这个题
  1. 7、 存在一个JavaBean,它包含以下几种可能的属性:
  2.        1:boolean/Boolean
  3.        2:int/Integer
  4.        3:String
  5.        4:double/Double
  6.      属性名未知,现在要给这些属性设置默认值,以下是要求的默认值:
  7.        String类型的默认值为字符串 www.itheima.com
  8.        int/Integer类型的默认值为100
  9.      boolean/Boolean类型的默认值为true
  10.        double/Double的默认值为0.01D.
  11.   只需要设置带有getXxx/isXxx/setXxx方法的属性,非JavaBean属性不设置,请用代码实现
复制代码

作者: 時間_|_的灰    时间: 2015-1-16 01:30
/**
* 设计思路:设计一个模拟题目要求的JavaBean类,通过反射进行对其中的未知属性名的变量赋值。
*
* 建立模拟JavaBean类
* */
public class JavaBean {
        //成员变量
        private String itCast;
        private int num;
        private boolean flag;
        private double money;

        public String getItCast() {
                return itCast;
        }
        public void setItCast(String itCast) {
                this.itCast = itCast;
        }
        public int getNum() {
                return num;
        }
        public void setNum(int num) {
                this.num = num;
        }
        public boolean isFlag() {
                return flag;
        }
        public void setFlag(boolean flag) {
                this.flag = flag;
        }
        public double getMoney() {
                return money;
        }
        public void setMoney(double money) {
                this.money = money;
        }
}

public class Assign {
        public static void main(String args[]) throws Exception, Exception{
                Class<JavaBean> clazz = JavaBean.class;   //拿到字节码
                Object obj = clazz.newInstance();         //拿到字节码的一个对象实例
                //通过字节码拿到BeanInfo实例对象
                BeanInfo beanInfo = Introspector.getBeanInfo(clazz);
                //通过BeanInfo拿到这个字节码的所有属性描述
                PropertyDescriptor[] pds = beanInfo.getPropertyDescriptors();
                //通过Pds拿到属性对应的set和get方法,并通过set方法进行赋值
                for(PropertyDescriptor pd:pds){
                        Method setMethod = pd.getWriteMethod();
                        Method getMethod = pd.getReadMethod();
            //拿到当前属性的类型字节码
                        Class<?> propertyClass = pd.getPropertyType();
                        //通过字节码来筛选出相应的属性,再对应赋值
                         if(propertyClass==String.class){
                 setMethod.invoke(obj, "www.itheima.com");
                //打印get查看赋值结果
                 System.out.println(getMethod.invoke(obj));
            }else if(propertyClass==int.class || propertyClass==Integer.class){
                 setMethod.invoke(obj, 100);
                 System.out.println(getMethod.invoke(obj));
            }else if(propertyClass==Boolean.class || propertyClass==boolean.class){
                     setMethod.invoke(obj, true);
                     System.out.println(getMethod.invoke(obj));
            }else if(propertyClass==Double.class || propertyClass==double.class){
                    setMethod.invoke(obj, 0.01D);
                    System.out.println(getMethod.invoke(obj));
                 }
                 }                        
          }         
}





欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2