Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,868 questions

51,791 answers

573 users

How to interrupt the execution of a thread in Java

1 Answer

0 votes
class MyThread implements Runnable {
    public void run() {
        try {
            Thread.sleep(500);
            System.out.println("run()");
        } catch (Exception e) {
            System.out.println("Exception: " + e);
        }
        
        System.out.println("Thread is running");
    }
}

class Program {
    public static void main(String[] args) {
        try {
            Thread trd = new Thread(new MyThread());
    
            trd.start();
    
            trd.interrupt();
    
        } catch (Exception e) {
            System.out.println("Exception: " + e);
        }
    }
}



/*
run:

Exception: java.lang.InterruptedException: sleep interrupted
Thread is running

*/

 



answered Feb 2, 2024 by avibootz

Related questions

1 answer 156 views
1 answer 159 views
159 views asked Feb 2, 2024 by avibootz
1 answer 118 views
118 views asked Jan 29, 2024 by avibootz
...