20 Nisan 2023 Perşembe

//noinspection resource

Örnek
Elimizde şöyle bir kod olsun. Burada inputStream kapatılmıyor gibi görünüyor. IDE de hata veriyor. Onu görmemek için kullanırız.
//noinspection resource
InputStream inputStream = null;
try {
    inputStream = new FileInputStream("file.txt");
    // do something with inputStream
} catch (IOException e) {
    // handle exception
} finally {
    // close inputStream
}



Hiç yorum yok:

Yorum Gönder