A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

import org.apache.commons.beanutils.BeanUtils;public class Test {        /**         * @param args         */        public static void main(String[] args)throws Exception {                // TODO Auto-generated method stub                Person p = new Person(1, 3);                //该怎么用?                BeanUtils.setProperty(p, "x", 100);                //该怎么用?                System.out.println(BeanUtils.getProperty(p, "x"));        }}class Person{        private int x;        private int y;        public Person(int x,int y)         {                this.x = x;                this.y = y;        }        public int getX() {                return x;        }        public void setX(int x) {                this.x = x;        }        public int getY() {                return y;        }        public void setY(int y) {                this.y = y;        }                }

3 个回复

倒序浏览
import org.apache.commons.beanutils.BeanUtils;


public class Test {

        /**
         * @param args
         */
        public static void main(String[] args)throws Exception {
                // TODO Auto-generated method stub
                Person p = new Person(1, 3);
                //出错,Cannot set x 该怎么用?
                BeanUtils.setProperty(p, "x", 100);
                //该怎么用?
                System.out.println(BeanUtils.getProperty(p, "x"));
        }

}
class Person
{
        private int x;
        private int y;
        public Person(int x,int y)
        {
                this.x = x;
                this.y = y;
        }
        public int getX() {
                return x;
        }
        public void setX(int x) {
                this.x = x;
        }
        public int getY() {
                return y;
        }
        public void setY(int y) {
                this.y = y;
        }
       
       
}
回复 使用道具 举报
把100改成字符串试试
回复 使用道具 举报
谭荣强 发表于 2014-7-7 17:47
把100改成字符串试试

class Person必须单独在一个类里
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马