Eclipseが次のコードで「リソースリーク:「in」が閉じられることはありません」というウォーミングを与えるのはなぜですか?
public void readShapeData() {
Scanner in = new Scanner(System.in);
System.out.println("Enter the width of the Rectangle: ");
width = in.nextDouble();
System.out.println("Enter the height of the Rectangle: ");
height = in.nextDouble();
Scanner
、警告が閉じて無音になりますが、System.in
通常は望ましくないことも閉じます。