일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 안드로이드 로그캣
- retrieveExplicitStyle
- 디바이스ID
- 앱강종현상
- aab파일apk변환
- 바텀네비게이션
- Bluetooth 스캔
- Android
- 앱강종
- bottomNavigation animation
- 안드로이드aab변환
- svn체크아웃
- lottieAnimation
- 고유식별자
- 로그캣 색상변경
- target29
- 안드로이드 디버깅툴
- targetSDK29
- Android10
- Android OS 10
- 안드로이드
- BottomNavigation
- Android Bluetooth
- apk변환
- 로그캣 색상지정
- Opacity Hex
- 바텀네비
- 로띠애니메이션
- 안드로이드apk변환
- 투명도 hex값
Archives
- Today
- Total
공부하는 다락방
열혈강의 Java프로그래밍 Round 4 본문
# System 클래스 Member Field
- err : 에러 출력 스트림
- in : 입력 스트림(키보드의 입력 값)
- out : 출력 스트림
# 기본 출력(PrintStream 클래스)
- write Method :
int형 ascii 코드값 write는 auto flush 기능이 없지만(System.out.flush();로 출력), byte 배열 write는 auto flush가 됨
- print Method :
한 줄 개행되지 않고 출력되는 것
- println Method :
한 줄 개행되는 것
- printf Method :
c언어의 출력서식(%c, %d, %f, %s)을 빌려와서 손쉽게 작성 가능
# 키보드를 통한 기본 입력처리
* 문자 및 숫자 입력
- 아스키 = System.in.read();
- 숫자 = System.in.read() -48 or -'0';
- 문자 = (char)System.in.read();
* 문자열 입력
- System.in.read(byte[]);
- ★ BufferedReader in =
new BufferedReader(new InputStreamReader(System.in)); (제일중요!! in.readLine();으로 문자열 입력받을 수 있음. System.in.read() 보다 더 효율적으로 처리할 수 있음.)
'Java' 카테고리의 다른 글
열혈강의 Java프로그래밍 Round 7 (0) | 2014.12.05 |
---|---|
열혈강의 Java프로그래밍 Round 6 (0) | 2014.12.04 |
열혈강의 Java프로그래밍 Round 5 (0) | 2014.12.02 |
열혈강의 Java프로그래밍 Round 3 (0) | 2014.11.17 |
열혈강의 Java프로그래밍 Round 2 (0) | 2014.11.12 |
Comments