public class TaUtTraad implements Runnable{ Bankkonto bankkonto; public TaUtTraad(Bankkonto bankkonto){ this.bankkonto = bankkonto; } @Override public void run(){ for (int i = 0; i < 1000; i++) { try { bankkonto.taUt(100); } catch (InterruptedException e) { // gj?re noe hvis man vil } } } }