class Katt { int vekt; public Katt(int vekt) { this.vekt = vekt; } public void spis() { vekt ++; } public int hentVekt() { return vekt; } }