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
- counldn't have
- 형변환
- by until
- 명절 표현
- it's a good thing
- I'm glad
- know
- keep -ing
- Realtime Rendering
- 변수
- by any chance
- for ing
- java
- end up ing
- ISTQB
- metascore
- relif
- 명세기반테스트
- happen to
- C++
- sort함수
- 제5인격
- 코로나19
- gameQA
- continue to
- UE4
- html
- might have p.p
- 게임QA
- if조건절
Archives
- Today
- Total
Records rather than Memories
JAVA의 실행 본문
Code or Source
- 자바의 문법에 맞게 만들어진 text file
- 확장자는 .java
Compile
- 자바의 문법은 사람이 이해하는 형식이기 때문에 컴퓨터가 이해하는 형식으로 변환해야함
- code = > byte code
ex) helloworld.java라는 코드를 컴파일한다. / javac helloworld.java
실행
- javac helloworld.java 명령을 실행하면 helloworld.class가 생성된다.
- 이 컴파일된 파일을 launcher를 이용해 실행
ex) java helloworld.class
'Software > JAVA' 카테고리의 다른 글
[java] 정수와 실수 (0) | 2019.10.01 |
---|---|
Eclipse의 기능 (0) | 2019.09.30 |
[java] 변수 (Variable) (0) | 2019.09.29 |
[java] Data type 자료형 (0) | 2019.09.28 |
JAVA의 구성 (0) | 2019.09.27 |
Comments