본문 바로가기
개발/java

JAVA 전역변수/지역변수 알아가기

by 카앙구운 2015. 10. 23.
728x90
반응형

전역변수지역변수

전역변수는 어떤 변수 영역에서도 접근할 수 있는 변수로서 지역변수와 대비된다. 다음 예제에서 와 같이 main안에서

정의 하지 않아도 다음과 같으 활용 할 수 있다. static이 붙어 있는 변수면 전역변수라고 보면 된다.


---------------------------------------------------------------

public class Test {

static String myCompany="LG"; //전역변수                

public static void main(String[] args) {


String myCar="Beanz";//지역변수

int myPay=9000;

System.out.println(myCompany);

System.out.println(myCar);

System.out.println(myPay);

}


--결과--






728x90
반응형

댓글