Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
Tags
- https://joshua1988.github.io/web-development/javascript/js-async-await/
- https://jcon.tistory.com/189
- https://siyoon210.tistory.com/130
- https://appmaster.io/ko/blog/rest-apiran-mueosimyeo-dareun-yuhyeonggwa-eoddeohge-dareungayo
- https://joshua1988.github.io/web-development/javascript/promise-for-beginners/
- https://subicura.com/2017/01/19/docker-guide-for-beginners-1.html
- https://sewonzzang.tistory.com/22
- https://hi-zini.tistory.com/entry/%EB%B9%84%EB%8F%99%EA%B8%B0%EC%A0%81-%EB%B0%A9%EC%8B%9D-%EC%B2%98%EB%A6%AC-%EB%B0%A9%EB%B2%95-Callback-Promise-async-await
- https://aws.amazon.com/ko/docker/
- https://goodgid.github.io/HTTP-Communicate-Process/
Archives
- Today
- Total
“Connecting the dots”
java study 본문
반응형
KEYboard buffer
buffer(임시기억장소)
Queue(Flfo)"선입선출
(First ln First Out)
import java.io.IOException;
public class Q13 {
public static void main(String[] args) throws IOException {
System.out.println("데이터를 입력하세요.끝내시리연 [Ctrl]+Z를 누르세요.");
while(true) {
//키보드 버퍼로부터 1byte읽어오기
int ch = System.in.read();
//ctrl+z를 누르면-1을 반환
if(ch==-1)break;
System.out.printf("%c",ch);
}
}
}
반응형
'JAVA' 카테고리의 다른 글
JAVA 알고리즘 연습문제 (0) | 2023.04.10 |
---|---|
java study 메소드 정의 (0) | 2023.04.10 |
JAVA Study 자바로 구현된 구구단 프로그램구현. (0) | 2023.04.07 |
Java Study 파일을 읽어와서 내용을 콘솔에 출력하는 코드 (0) | 2023.04.06 |
JAVA STUDY 제어문 (0) | 2023.04.05 |