Console Output(콘솔 출력) - print vs println vs printf
CODEDRAGON ㆍDevelopment/Java
반응형
Console Output(콘솔 출력)
print vs println vs printf
함수 |
차이점 |
System.out.print();
|
· 자동줄바꿈 안됨 · 한줄로만 출력 |
System.out.println(); |
· 자동 줄바꿈 |
System.out.printf(); |
· 형식이 있는 출력 · SDK ver5.0이상 |
'Development > Java' 카테고리의 다른 글
% 서식문자, % 서식문자 예 (0) | 2017.09.14 |
---|---|
System.out.printf( ) (0) | 2017.09.14 |
논리 연산자(logical operator) - 논리 연산자 종류, 논리 연산자 결과 (0) | 2017.09.13 |
산술 연산자(arithmetic operator) (0) | 2017.09.13 |
상수 (0) | 2017.09.12 |