버그&에러/Java
[JAVA 오류] the method split(string) in the type string is not applicable for the arguments (char)
2020. 2. 5. 16:37ex)
String temp = "A.B.C.D";
String[] arr = temp.split('.');
[오류] the method split(string) in the type string is not applicable for the arguments (char)
해결 : '.' -> "."
파이썬 에서는 ' 와 " 이 동일하게 쓰이지만..
자바 에서는 '로 enclosed 된것은 character literals 이고, "로 enclosed 된것은 string literals 이다.