class Klasse { private int verdi; public static String navn = "Jens"; public Klasse(int verdi) { this.verdi = verdi; } public int hentVerdi() { return this.verdi; } public void skrivVerdi() { System.out.println(this.verdi); } public void nyVerdi(int nyVerdi) { this.verdi = nyVerdi; } public static void statiskMetode() { System.out.println("Dette er en statisk metode"); } }