1. jdk 8 다운로드
2. eclipse 다운로드
3. D2coding 폰트 다운로드
4. eclipse에 project, class 생성
5. 주석 처리 및 단축키 사용
(aws, cloudflare 회원가입)
jdk 8 다운로드
https://www.oracle.com/kr/java/technologies/javase/javase8-archive-downloads.html
다운로드!
eclipse 다운로드
https://www.eclipse.org/downloads/
오른쪽 중간에
다른 버전 선택 가능
https://www.eclipse.org/downloads/packages/release/2019-06
R Packages 클릭 후
다운로드 후 압축 파일 해제
설치 완료!
D2coding 폰트 다운로드
https://github.com/naver/d2codingfont
에서 다운로드 후 압축해제
파일명 : D2Coding-Ver1.3.2-20180524-all
우클릭 후 모든 사용자용으로 설치
Window > Preferences > General > Appearance > Colors and Fonts > Basic > Text font
public class HelloWorld {
public static void main(String[] args) {
/*
font 적용 완료 (D2coding)
1234567890
가나다라마
한글 1글자 = 영어 2글자
*/
}
}
eclipse에 project, class 생성
주석 처리 및 단축키 사용
public class HelloWorld3 {
// main 타이핑 ctrl + space
public static void main(String[] args) {
// syso 타이핑 ctrl + space
System.out.println("헬로우 월드");
// ctrl + '/' 한줄 주석
/*
ctrl + shift + '/' 여러줄 주석
*/
}
}
댓글