Perché Eclipse mi dà il riscaldamento "Perdita di risorse: 'in' non è mai chiuso" nel codice seguente?
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
e silenzierà l'avviso, ma chiuderà anche ilSystem.in
che in genere non è desiderabile.