본문 바로가기
학과 공부/컴퓨터프로그래밍2(자바)

4/2

by sonysame 2018. 4. 2.

compile

->

statement that creates instance

->

find for source file inside the directory

->

compile


name of source file을 name of the class해야하는 이유이다!


look for source file to compile!


Test01.java에는 circle이 없지만

rectangle.java에는 그런 내용이 있고

Test01.java에서는 Circle이 컴파일 되지 않지만, rectangle.java에 명시되어 있기 때문에

Test01.java가 컴파일될때 Circle.java도 컴파일된다!

class method instance method 차이


class method: static이라는 keyword로 선언된 메소드 

인스턴스 메소드: static으로 선언되지 않은 메소드 new라는 연산자에 의해서 객체화가 이루어진다.


'학과 공부 > 컴퓨터프로그래밍2(자바)' 카테고리의 다른 글

4/9  (0) 2018.04.09
4/4  (0) 2018.04.04
3/28  (0) 2018.03.28
3/26  (0) 2018.03.26
3/21  (0) 2018.03.21