Skip to content

Instantly share code, notes, and snippets.

@ron623
Created March 14, 2015 00:20
Show Gist options
  • Save ron623/df25dc600742df18997c to your computer and use it in GitHub Desktop.
Save ron623/df25dc600742df18997c to your computer and use it in GitHub Desktop.
nest
package Nest;
public class NestCls {
// 非staticメンバ
int i = 0;
// staticなメンバ
static int a = 999;
// インナークラス(非static)
public class Inner {
// さらにインナーなクラス
class MoreInner{
// さらに、さらにインナーなクラス
class MoreMoreInner{
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment