Skip to content

Instantly share code, notes, and snippets.

@ron623
Created January 30, 2015 03:41
Show Gist options
  • Save ron623/0221736986905e1b6ee2 to your computer and use it in GitHub Desktop.
Save ron623/0221736986905e1b6ee2 to your computer and use it in GitHub Desktop.
ParentClass
package study.Study;
public class ParentClass {
public ParentClass() {
// TODO 自動生成されたコンストラクター・スタブ
}
public void ParentMethod(){
System.out.println("親クラスのメソッド");
}
void sample(String s){
int i = 0;
i = Integer.valueOf(i);
System.out.println(i);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment