*** 검색어: nabiro, java, IOException, 문자열 입력 만일 아래의 소스에서 try ~ catch 를 이용하여 IOException 예외 처리를 하지 않는다면 아래와 같은 에러를 만날 수 있습니다. --- 에러메세지 --- Exception in thread "main" java.lang.Error: Unresolved compilation problem: Unhandled exception type IOException --- 에러메세지 --- //filename: inputTest.java // import java.io.*; public class inputTest { public static void main(String[] args) { System.out.println("..
*** 검색어: nabiro, PHP, 문자열 연산자, 문자열, 연산자, 합치기, 결합, 더하기 두 개의 string을 합치는 문자열 연산자 // $strA = "Hello"; $strB = "World"; $strC = $strA . " " . $strB; echo "strC=" . $strC; // 결과는 strC=Hello World 와 같습니다.