Eclipse가 다음 코드에서 "Resource leak : 'in'is never closed"라는 온난화를주는 이유는 무엇입니까?
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
일반적으로 바람직하지 않은 경고도 닫힙니다 .