Comparing Performance of int and Integer

后端 未结 5 2082
天涯浪人
天涯浪人 2020-12-18 18:26

Which one is best in programming - int or Integer? Especially whenever both are doing the same task?

I am writing an appli

5条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-18 19:05

    int is primitive, Integer is an int wrapped up as an object.

    It really depends how you are going to be using them.

提交回复
热议问题