IDE/IntelliJ
[IntelliJ][단축키][팁] sout(System.out.print)
youn12
2021. 7. 8. 22:12
✏️ Info.
- Version : Intellij Ultimate 2021.1.3
- sout(System.out.print) 콘솔을 찍을 때 편리하게 사용되는 단축키 종류
📋 List.
1. sout - 기본
2. soutm - 메소드 명
3. soutp - 파라미터 명
4. soutv - 값
✔️ Content.
1. sout
- System.out.println(); 이 기본으로 생성
2. soutm
- System.out.println(Class.method);
- 클래스명.메소드명 출력
3. soutp
- System.out.println("parameter = " + parameter);
- 입력받은 파라미터들 출력
4. soutv
- System.out.println("value = " + value);
- 메소드 내에서 사용 가능한 변수 출력