Which one is faster? Integer.valueOf(String string) or Integer.parseInt(String string)?

后端 未结 4 1005
执笔经年
执笔经年 2021-02-06 01:41

I want to know which method is faster?

Integer.valueOf(String string) or Integer.parseInt(String string)?

Is there any Performance or M

4条回答
  •  不知归路
    2021-02-06 01:59

    I would not look at performance. The API says that Integer.valueOf(String) is interpreted the same as if it has been passed to Integer.parseInt(String), except it is wrapped into an Integer. I would look at what you need: an Integer or an int.

    Integer.valueOf returns an Integer.

    Integer.parseInt returns an int.

提交回复
热议问题