Created
September 20, 2018 03:54
-
-
Save keiji/5375aa7d800252ea688faa7443c099f8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Main { | |
public static void main(String[] args) { | |
Number num = new Long(1L); | |
if (num.equals(1)) { | |
System.out.println("true"); | |
} else { | |
System.out.println("false"); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment