Getter Setter 쉽게 만드는 법 : 소스코드 화면 우클릭 > Source > Generate Getters and Setters하면 쉽게 만들어짐 Method에 대한 이해 관련 코드package test.main;import test.mypac.AirPlane;import test.mypac.Test;public class MainClass01 { public static void main(String[] args) { Test t=new Test(); //return type 이 void인메소드 호출 t.walk(); //return type이 int 인 메소드 호출하고 리턴되는 값을 a라는 int type 지역변수에 담기 int a=t.getNumber(); //return typ..