code

code


class Int{
    int value;
    
    public int postIncrement(){
        int tmp = this.value;
        this.value += 1;
        return tmp;
    }

    public int preIncrement(){
        this.value += 1;
        return this.value;
    }        
}


Report Page