Java实现swap函数

    void swap(IntHolder a,IntHolder b){int tmp = a.value;a.value = b.value;b.value = tmp;}