JDK 11

· JVM/Java
Compile 언어의 변수 선언 방식은 보통 Explicit Declaration이다. Java SE 10 이전 버전까지는 모두 Explicit Declaration을 따랐다. Explicit Declaration Type Example import java.io.BufferedWriter; import java.io.IOException; import java.io.OutputStreamWriter; public class Main { public static void main(String[] args) throws IOException { // Type variable_name = ~~~ String blogName = "Falcon"; int numberOfRegister = 50; Buffered..
M_Falcon
'JDK 11' 태그의 글 목록