Pass a reference to the object



public class ClassA{
private int value;

public ClassA(int v){
this.value = v;
}