2008年7月29日

一.java Native Method
http://ghsea.javaeye.com/blog/72543
二.JVM如何理解
三.一个嵌套类

1. public class AnyClass
2. {
3.  abstract int method();
4.  void anotherMethod()
5.  {
6.  }
7.
8.  class Box extends AnyClass
9.  {
10.   int method()
11.   {
12.    return 2;
13.   }
14.  }
15. }

posted on 2008-07-29 17:26  小星星☆★  阅读(187)  评论(0)    收藏  举报

导航