본문 바로가기
JAVA

Static 예제

by Minius 2018. 3. 14.
반응형

package education.staticex;


public class Television {


static String company = "Samsung";

static String model = "LCD";

static String info;

static int price;

String manufacture_date;

Television(String manufacture_date){

this.manufacture_date = manufacture_date;

}

static {

info = company + "-" + model;

}

static {

int sum = 0;

for(int i=0; i<10; i++) {

sum++;

}

}

}



'JAVA' 카테고리의 다른 글

중첩 클래스, 중첩 인터페이스  (0) 2018.03.14
Getter / Setter  (0) 2018.03.14
Static  (0) 2018.03.14
Thread  (0) 2018.03.08
객체지향 프로그래밍  (0) 2018.03.05

댓글