一.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. }