public class Subject { private int myInt; public void withClass(Object <caret>o) { myInt += o.hashCode(); } } class User { private void oper() { Subject subj = new Subject(); subj.withClass(this); } }