We want to connect the people who have knowledge to the people who need it, to bring together people with different perspectives so they can understand each other better, and to empower everyone to share their knowledge.
val a: Int = 100 val boxedA: Int? = a val anotherBoxedA: Int? = a val b: Int = 10000 val boxedB: Int? = b val anotherBoxedB: Int? = b println(boxedA === anotherBoxedA) // true println(boxedB === anotherBoxedB) // false
val a: Int? = 100 val boxedA: Int? = a val anotherBoxedA: Int? = a val b: Int? = 10000 val boxedB: Int? = b val anotherBoxedB: Int? = b println(boxedA === anotherBoxedA) // true println(boxedB === anotherBoxedB) // true
public static final void a() { int a = 100; Integer boxedA = Integer.valueOf(a); Integer anotherBoxedA = Integer.valueOf(a); int b = 10000; Integer boxedB = Integer.valueOf(b); Integer anotherBoxedB = Integer.valueOf(b); boolean var6 = boxedA == anotherBoxedA; boolean var7 = false; System.out.println(var6); var6 = boxedB == anotherBoxedB; var7 = false; System.out.println(var6); } public static final void b() { Integer a = 100; Integer b = 10000; boolean var6 = a == a; boolean var7 = false; System.out.println(var6); var6 = b == b; var7 = false; System.out.println(var6); }
2.2K Point(s)
1.2K Point(s)
313 Point(s)
178 Point(s)
138 Point(s)
Input your email to receive reset password link, or if you remember your password, you can click