If Java is a case-sensitive language then why are hexadecimal values not case-sensitive?
int x = 0x21af3;
int y = 0X21AF3;
System.out.println(x==y);
It returns true. Can anyone explain why hexadecimal is not case-sensitive?
If Java is a case-sensitive language then why are hexadecimal values not case-sensitive?
int x = 0x21af3;
int y = 0X21AF3;
System.out.println(x==y);
It returns true. Can anyone explain why hexadecimal is not case-sensitive?
Copyright © 2021 Jogjafile Inc.
Because the Java Language Specification says it isn't case-sensitive.
Under 3.10.1. Integer Literals: