Ch2-6. 접미사·접두사
0. 목차
Chapter2. 변수
Ch2 - 6. 리터럴의 타입과 접미사
Chapter2. 변수
Ch2 - 6. 리터럴의 타입과 접미사
boolean power = true;
char ch = 'A'
;String str = "ABC";
byte b = 127;
long l = 10000000000L
float f = 3.14f
float f = 100f
int hex = 0x100;
short s = 32767;
double d = 3.14d