logo

Crowdly

Millised read väljastatakse ekraanile? class Suletav implements AutoCloseable...

✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.

Millised read väljastatakse ekraanile?

class Suletav implements AutoCloseable {

   Suletav() {

       System.out.println("Konstruktori sees");

   }

   @Override

   public void close() {

       System.out.println("Sulgesin ennast!");

   }

}

public class SuletavNäide {

   public static void main(String[] args) {

       try (Suletav suletav = new Suletav()) {

           System.out.println("Try sees");

       }

       System.out.println("Pärast");

   }

}
0%
0%
More questions like this

Want instant access to all verified answers on moodle.ut.ee?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!