메소드 접근 제한자 실행 순서 접근 제한자 package com.test01; public class MethodTest01 { public static void main(String[] args) { MethodTest01 test = new MethodTest01(); //static method 실행: 클래스명.메소드명(); MethodTest01.publicMethod(); MethodTest01.protectedMethod(); MethodTest01.defaultMethod(); MethodTest01.privateMethod(); test.NonStaticMethod(); } //접근제한자(public, protected, default, private) //퍼블릭: 어디서나 접근, 사용, ..