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
반응형
'개발 > java' 카테고리의 다른 글
JAVA 1차원 배열/2차원 배열 간단한 예제 (0) | 2015.10.23 |
---|---|
JAVA 값을 입력받는 Scanner! v3e0e4e5a (0) | 2015.10.23 |
javax.servlet.ServletException: java.sql.SQLException: Listener refused the connection with the following error: 에러 (0) | 2015.10.16 |
Properties 이용 (0) | 2015.08.17 |
java Exception(PrintStream, ArrayIndexOutOfBoundsException ) (0) | 2015.08.04 |
댓글