1 2 public class Square { 3 4 private int length; 5 6 public Square(int length) { 7 this.length = length; 8 } 9 10 public double getArea() { 11 // TODO 自動生成されたメソッド・スタブ 12 return Math.pow(length,2); 13 } 14 15 }