Advertisement
Guest User

Untitled

a guest
Aug 4th, 2015
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. public class OuterClass {
  2. public class NestedClass{
  3. // 這是 Inner 才對吧?
  4. }
  5. static class StaticNestedClass {
  6.  
  7. }
  8.  
  9. static void doSomething() {
  10. class SomethingInnerClass {
  11.  
  12. }
  13. }
  14. }
  15. class InnerClass {
  16. // 這我不確定該不該叫 Inner Class,似乎叫 Inner 也不太對?
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement