Method
Call Method, Flow of Method
How to use method?
메소드(클래스) 작성 : 메소드는 클래스 영역에서만 정의할 수 있다.
인스턴스(객체) 생성 : 메소드(클래스)를 사용하기 위해! 사용 = 접근, 조작 등등
메소드 호출
return statement
return statement can be omitable only void type. Otherwise, return statement is essential.
Not only when if statement is true, include return statement when it is false.
Last updated