如何在Java中增加Integer?

时间:2018-04-18 10:08:44

标签: java integer

我想在java中增加一个整数,我创建这个方法

private Integer id;
private Integer operationId;
// getter and setter id, operationId
public void increment() {
    if (operationId != null) {
     id= new Integer(id.intValue() + 1);
    }
}

但不能工作可以帮助我吗?

1 个答案:

答案 0 :(得分:-2)

    private Integer id=new Integer(0); //
public void increment() {
 if (operationId != null) { 
id= new Integer(id.intValue() + 1);
 } 
}