[Java] Collection, Generic,File,Input,Output,Thread (2)
표준 입력 및 출력 스트림
모니터(표준출력장치) ← (바이트) - from메모리(변수) System.in
키보드(표준입력장치) - (바이트) → to메모리(변수) System.out
import java.io.IOException;
public class InputOutput {
public static void main(String[] args) throws IOException {
int data = 0;
...
wowssun.hashnode.dev8 min read