+ 3
Is Java case sensitive?
E.g. Are they both the same? System.out.println("Hi"); system.out.println("Hi");
5 Respuestas
+ 16
Yes, it is.
+ 3
Yes.
+ 1
Yes.
int a;
is different of
int A;
+ 1
it is case-sensitive, but the IDE will help you a lot when coding, so you do not have to memorize every single character.
0
yes