프로그래밍/생활코딩(JAVA)

[생활코딩 JAVA1] 1일차 - 1. 수업 소개, 2. 자바 설치와 jdoodle, 3. 이클립스

aSpring 2021. 1. 4. 17:23
728x90
728x90

 

1강. 수업 소개

https://opentutorials.org/course/3930

 

 

JAVA1

- 컴퓨터 프로그래밍 언어인 'JAVA'의 기본을 다루는 수업

- Computer Programming Language 중 하나인 JAVA1

- 목표 : 수강생의 자립

- 필수적인 것만 넣어 개념적으로 경량화 된 수업

- 자립을 위한 문제해결 도구들을 충분히 많이 갖출 수 있도록 도움

- 기본기가 갖춰질 것

 


2강. 자바 설치 : 온라인 실습 환경 장만하기

https://opentutorials.org/course/3930/26648

 

1. 온라인에서 바로 실습할 수 있는 방법

- JAVA online editor 검색하면 많은 도구들이 나오나

생활코딩 수업에서는 https://jdoodle.com 의 도구를 이용할 것

 

JDoodle - free Online Compiler, Editor for Java, C/C++, etc

JDoodle is a free Online Compiler, Editor, IDE for Java, C, C++, PHP, Perl, Python, Ruby and many more. you can run your programs on the fly online and you can save and share them with others. Quick and Easy way to compile and run programs online.

www.jdoodle.com

빨간색 동그라미 안쪽 내용에만 신경쓸 것

 

"Hello World!!!"를 출력하는 문장을 작성하고 Execute를 클릭하면

Result 창에 Hello World!!! 라고 결과가 나오는 것을 확인할 수 있다.

 

언제나 Hello World!!!!를 출력하는 프로그램이지만

입력값을 받아서 Hello의 뒤에 출력해 주도록 만들 수도 있다.

 

예를 들어 Hello 뒤에 Spring이 왔으면 좋겠으면

CommandLine Arguments에 Spring을 입력

public class MyClass{
	public static void main(String args[]) {
    	System.out.println("Hello " +args[0]);
    }
}

args에 들어가는 0번째 값 : Spring -> args[0]

여기에서 값을 더 집어넣어 주면

args[0] : Spring

args[1] : Fall

args[2] : Winter

 

Hello Spring, Winter을 출력하고 싶으면 아래와 같이 하면 된다

public class MyClass {
    public static void main(String args[]) {
      System.out.println("Hello "+args[0]+", " +args[2]);
    }
}


2. 자바 설치

자바 설치를 위한 프로그램을 다운로드 받아야 하는데

받기 전에 먼저 설치되어 있는지 확인하기

- Windows + R키 누르기 -> 실행 : cmd 입력하기

-> java -version 입력 -> java가 깔려있지 않다면 아래와 같이 뜰 것

설치되어 있다면 설치되어있는 java의 버전이 뜰 것 -> javac -version 도 입력해서 확인하기

-> 나는 설치되어있지 않으므로 설치해주어야 함

 

java development kit : 줄여서 JDK 다운로드 받기

- 프로그램을 개발할 때 사용하는 도구를 모아서 제공하는 개발자용 버전의 자바

 

'jdk download' 검색하면 가장 위에 오라클사가 뜸

https://www.oracle.com/kr/java/technologies/javase-jdk15-downloads.html

내 컴퓨터는 Windows x64이므로 해당하는 .exe 파일 다운로드

설치가 끝나면 다시한 번 cmd 창에서 확인해보기

이렇게 버전이 나오면 설치에 성공한 것

 


3. 개발 환경 세팅하기 - 이클립스

https://opentutorials.org/course/3930/26650

 

자바를 이용해 프로그램을 만들기 위해서는 기본적인 도구가 필요하다

가장 많이 사용하는 도구인 eclipse를 설치

 

https://www.eclipse.org/downloads/

 

Eclipse Downloads | The Eclipse Foundation

The Eclipse Foundation - home to a global community, the Eclipse IDE, Jakarta EE and over 375 open source projects, including runtimes, tools and frameworks.

www.eclipse.org

여기에서 다운로드받은 후

eclipseinstaller를 더블클릭 -> Eclipse IDE for java Developers 설치

 

나는 이미 원격 훈련을 들으며 설치를 했으므로 Pass

그런데 Java는 왜 없었지..?

728x90
728x90