본문 바로가기
학과 공부/컴퓨터프로그래밍2(자바)

4/11

by sonysame 2018. 4. 11.

static variable

메모리에->name, type, extra space for value directly


instance variable

메모리에->name type, 실제 값은 적혀있지 않아



constructor->initialize


int [] ary={3,2,1};<-different data type

ary.length



foreach loop


access every value 


for(int x:1ary)


->code simpler no index



'학과 공부 > 컴퓨터프로그래밍2(자바)' 카테고리의 다른 글

4/30  (0) 2018.04.30
4/16  (0) 2018.04.16
4/9  (0) 2018.04.09
4/4  (0) 2018.04.04
4/2  (0) 2018.04.02