logo

Crowdly

Mis ilmub ekraanile? public class MeieLõim implements Runnable {    private...

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

Mis ilmub ekraanile?

public class MeieLõim implements Runnable {

   private String nimi;

   public MeieLõim(String nimi) {

       this.nimi = nimi;

   }

   @Override

   public void run() {

       System.out.println(nimi);

   }

   public static void main(String[] args) {

       MeieLõim ml = new MeieLõim("Meie lõim");

       Thread t = new Thread(ml);

       t.start();

   }

}

0%
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!