大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
Class cl=null;
为山南等地区用户提供了全套网页设计制作服务,及山南网站建设行业解决方案。主营业务为成都网站设计、成都网站制作、外贸网站建设、山南网站设计,以传统方式定制建设网站,并提供域名空间备案等一条龙服务,秉承以专业、用心的态度为用户提供真诚的服务。我们深信只要达到每一位用户的要求,就会得到认可,从而选择与我们长期合作。这样,我们也可以走得更远!
try{
cl=Class.forName("java.lang.Array");
}catch(Exception e){}
System.out.print("1231321wdfs");
Field[] f=cl.getDeclaredFields();
java中没有java.lang.Array这个类..所以cl=Class.forName("java.lang.Array");这句会报错的...
但是catch(Exception e){}你的捕获异常这什么都没有做..
所以你看不到..于是cl还是为null..所以Field[] f=cl.getDeclaredFields();就会报异常了..
可以将java.lang.Array改为java.lang.String等等存在的类..
什么都不输出是因为java.lang.reflect.Array这个类里面没有任何属性。。
你用java.lang.String试下就知道了哈。。
package ox;public class entity {
private int year; private int bignum; private int smallone; private int smalltwo; private int smallthree; public int getBignum() {
return bignum;
} public void setBignum(int bignum) {
this.bignum = bignum;
} public int getSmallone() {
return smallone;
} public void setSmallone(int smallone) {
this.smallone = smallone;
} public int getSmallthree() {
return smallthree;
} public void setSmallthree(int smallthree) {
this.smallthree = smallthree;
} public int getSmalltwo() {
return smalltwo;
} public void setSmalltwo(int smalltwo) {
this.smalltwo = smalltwo;
} public int getYear() {
return year;
} public void setYear(int year) {
this.year = year;
}} package ox;public interface dao {
public int getNum(int bignum, int smallone, int smalltwo, int smallthree,
int year);
}
package ox;import ox.entity;
import ox.dao;public class impl extends entity implements dao {
public int getNum(int bignum, int smallone, int smalltwo, int smallthree,
int year) {
// TODO Auto-generated method stub
int i = 0;
int x, y, z;
for (i = 0; i = year; i++) {
x = smallone;
y = smalltwo;
z = smallthree;
smalltwo = x;
smallthree = y;
bignum += z;
smallone = bignum;
}
int num = bignum + smallone + smalltwo + smallthree;
System.out.println(year + "年后共有母牛" + num + "只"); return num;
}}
package ox;public class test { /**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
entity e = new impl();
dao d = new impl();
e.setBignum(0);
e.setSmallone(1);
e.setSmalltwo(0);
e.setSmallthree(0);
e.setYear(20);
d.getNum(e.getBignum(), e.getSmallone(), e.getSmalltwo(), e
.getSmallthree(), e.getYear());
}}
dd if=/dev/zero of=/swapadd bs=1024 count=524288
以上的命令是建立一个名为swapadd的交换空间,大小是521M。