더북(TheBook)

물론 ScopeTest2 메서드에서 매개변수로 선언한 value2는 문제없이 사용할 수 있습니다.

package javaStudy;

public class VariableScopeExam {
    int globalScope = 10;
    
    public void scopeTest(int value) {
        int localScope = 20;
        
        System.out.println(globalScope);
        System.out.println(localScope);
        System.out.println(value);
    }
    
    public void scopeTest2(int value2) {
        System.out.println(globalScope);
//      System.out.println(localScope);
//      System.out.println(value);
        System.out.println(value2);
    }

    public static void main(String[] args) {
    }
}
신간 소식 구독하기
뉴스레터에 가입하시고 이메일로 신간 소식을 받아 보세요.