2020. 3. 6. 11:35ㆍStudy/Computer Science
1. 자바의 장점과 단점
초창기 Java 단점)
- 기존 C/C++에 비해 느린 속도
- 리소스(메모리, CPU)를 많이 사용
발전된 현재 Java의 장점)
- 객체 지향 언어: 기능의 부품화
- JRE(Java Resource Environment)의 이용 : OS로부터의 자유로움
- 웹, 모바일 프로그래밍 용이
- GC(Garbage Collector, Java의 메모리 관리 알고리즘)를 통한 자동 메모리 관리
- 실행 속도 문제의 개선
2. 기초 개발 환경 설정하기
1) JDK(Java Development Kit) 설치하기 : https://www.oracle.com/java/technologies/javase-downloads.html
Java SE - Downloads | Oracle Technology Network | Oracle
Java API Documentation Updater Tool 1.3 Java API Documentation Updater Tool repairs-in-place Java API Documentation created with javadoc versions included with JDK 5u45, 6u45, 7u21 and earlier. See the 7u25 release notes for more information.
www.oracle.com
2) IDE(Integrated Development Environment) 설치하기 : https://www.eclipse.org/downloads/packages/installer
Eclipse Installer 2019-12 R | Eclipse Packages
5 Steps to Install Eclipse We've recently introduced the Eclipse Installer, a new and more efficient way to install Eclipse. It is a proper installer (no zip files), with a self-extracting download that leads you through the installation process. For those
www.eclipse.org
'Study > Computer Science' 카테고리의 다른 글
Java 프로그래밍 기초 4 - Scanner (0) | 2020.03.09 |
---|---|
Java 프로그래밍 기초 3 - 배열 (0) | 2020.03.09 |
Data Structure - Analysis of Algorithms (알고리즘 분석 방법) (1) | 2020.03.06 |
Java 프로그래밍 기초 2 - 변수와 자료형 (0) | 2020.03.06 |
Data Structure - Recursion (2) | 2020.03.05 |