Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

HelloArtoo/java-traps

Folders and files

NameName
Last commit message
Last commit date

Latest commit

History

4 Commits

Repository files navigation

Java Traps

things you don't notice.

Start Demo

package com.artoo.java_traps.demos;
/**
 * 
 * @author artoo
 * 
 */
public class IntegerCache {
	public static void main(String[] args) {
		Integer a = 100; // Method java/lang/Integer.valueOf:
		Integer b = 100;
		Integer c = 255;
		Integer d = 255;
		System.out.println(a == b); // true
		System.out.println(c == d); // false
		Long e = 100L;
		Long f = 100L;
		Long g = 255L;
		Long h = 255L;
		System.out.println(e == f); // true
		System.out.println(g == h); // false
	}

why 'a==b' is true and 'e==f' is true ?

Contents

More than 50 demos.

About

Java traps , things you don't notice.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

Contributors

Languages

AltStyle によって変換されたページ (->オリジナル) /