Posts

Showing posts with the label integer box

Integer vs int in java

Is there anything interesting between them. If you are a Junior Java developer then maybe it is fun. If you are a Senior Java developer then maybe it is also funny for you If you are a Profesional Java Developer then maybe it is not excited Anyone try to run this block code public static void main (String[] args) {         Integer x = new Integer( 1 ) ;         int y = 1 ;          if (x == y) {             System.out.println( true ) ;         } else {             System.out.println( false ) ;         } }                ---> It is clearly: true public static void main (String[] args) { ...