Perché Eclipse mi dà il riscaldamento "Perdita di risorse:" in "non viene mai chiuso" nel seguente codice?Perdita di risorsa: "in" non viene mai chiuso
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();
Questo chiude la 'Scanner' e mettere a tacere l'avvertimento, ma sarà anche vicino' System.in' che non è in genere desiderabile. –
@StuartCook +1. Qualcosa da tenere d'occhio. – informatik01
Perché abbiamo bisogno di chiudere Scanner? Cosa si intende per "perdita di risorse"? –