How to convert Integer to int?

前端 未结 5 1473
囚心锁ツ
囚心锁ツ 2020-12-02 11:47

I am working on a web application in which data will be transfer between client & server side.

I already know that JavaScript int != Java int. Because, Java int

5条回答
  •  心在旅途
    2020-12-02 12:20

    Perhaps you have the compiler settings for your IDE set to Java 1.4 mode even if you are using a Java 5 JDK? Otherwise I agree with the other people who already mentioned autoboxing/unboxing.

提交回复
热议问题