package com.juziku;
/**
* 反射类
* @author sunlightcs
* 2011-3-5
* http://hi.juziku.com/sunlightcs/
*/
public class ReflectPoint {
/**
* 私有变量x
*/
private int x;
public int y;
public String str1 = "abc";
public String str2 = "123";
public ReflectPoint(int x, int y) {
super();
this.x = x;
this.y = y;
}
}
全文请访问:[url]http://www.juziku.com/wiki/241.htm[/url]