java基础第23天_数据库连接池\反射
更新:HHH   时间:2023-1-7


1.属性赋值

-------------

1.Man{50+ }

Man man = new Man();

man.setXxx1(...);

man.setXxx2(...);

...

50


Man copy = new Man();

copy = man ;

copy.setXxx1(man.getXxx1());

copy.setXxx1(man.getXxx1());

copy.setXxx1(man.getXxx1());

copy.setXxx1(man.getXxx1());


2.利用jdbc结合反射,完成查询处理,返回集合。

动态

select id,name,age,xx from ... ;

Metadata

rs.get()


返回数据库教程...