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 | 31 |
Tags
- control
- Java
- Algorithm
- Pipelining
- XML
- Linux
- computer
- data structure
- architecture
- javascript
- instruction
- mysql
- DS
- DoM
- CSS
- MacOS
- react
- DATAPATH
- php
- Class
- while
- python
- html
- function
- MIPS
- DB
- web
- github
- for
- system
Archives
- Today
- Total
목록comments (1)
YYYEJI

자바에서 주석 처리하는 방법에 대해서 알아봅시다. public static void main(String[] args) { System.out.print("Hi~ "); System.out.print("there."); } 여기서 두번째 print문을 주석 처리를 하게 되면 public static void main(String[] args) { System.out.print("Hi~ "); // System.out.print("there."); } 두 번째 문자는 출력되지 않습니다. 한 번에 여러 줄을 주석 처리하는 방법을 알아보겠습니다. public static void main(String[] args) { System.out.print("Hi~ "); System.out.print("there.\..
Java
2022. 10. 23. 21:28