To see a world in a grain of sand.
And a heaven in a wild flower
Hold infinity in the palm of your hand.
And eternity in an hour
一花一世界
一沙一天堂
掌中握无限
霎那成永恒
星期一, 五月 23, 2005
Java Inner Class的使用技巧
public class test
{
public class Adjust
{
String name;
String gender;
}
public static void main(String[] args)
{
Adjust adjust = new test().new Adjust();//注意语法的用法