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 |
Tags
- ISTQB
- by any chance
- counldn't have
- for ing
- html
- 변수
- 코로나19
- sort함수
- relif
- 명절 표현
- I'm glad
- end up ing
- java
- continue to
- know
- C++
- happen to
- might have p.p
- by until
- 명세기반테스트
- metascore
- keep -ing
- it's a good thing
- 게임QA
- 제5인격
- gameQA
- 형변환
- if조건절
- UE4
- Realtime Rendering
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