public class BankkontoMain { public static void main(String[] args) { Bankkonto bankkonto = new Bankkonto(); Thread t1 = new Thread(new SettInnTr?d(bankkonto)); Thread t2 = new Thread(new SettInnTr?d(bankkonto)); Thread taUt = new Thread(new TaUtTr?d(bankkonto)); t1.start(); t2.start(); taUt.start(); //Main-tr?den sover litt i 2 sekunder, s? vi kan se sluttsaldo try { Thread.sleep(2000); } catch (InterruptedException e) { } System.out.println("Saldo til slutt: "+bankkonto.saldo); } }