import java.util.Scanner; // Stoppeklokke som st?pper n?r den blir avbrutt // av main()-tr?den class Stoppeklokke2 { public static void main (String[] arg) { Scanner tastatur = new Scanner(System.in); System.out.print("Trykk Return for ? starte... "); tastatur.nextLine(); Thread klokke = new Thread(new Klokke()); klokke.start(); System.out.print("Trykk Return for ? stoppe..."); tastatur.nextLine(); klokke.interrupt(); System.out.println("Takk for n?"); } } class Klokke implements Runnable { @Override public void run () { int tid = 0; while (true) { System.out.print(tid + " "); try { Thread.sleep(1000); } catch (InterruptedException e) {return;} tid++; } } }