Daily-study
[오늘의 공부] java, 중간고사 과제 제출
by Roseline Song | May 3, 2019
자바 - 생활코딩
-
배열 : https://roseline124.github.io/java/2019/05/03/array.html
-
메서드 : https://roseline124.github.io/java/2019/05/03/method.html
-
입출력 : https://roseline124.github.io/java/2019/05/03/IO.html
-
객체지향 : https://roseline124.github.io/java/2019/05/03/OOP.html
-
유효범위
public class Scope_190503 {
static int j = 0; // 전역 변수
static void a() {
int i = 0; // 지역 변수
}
public static void main(String[] args) {
for(int i = 0; i<5; i++) {
a(); // a의 i는 a 내에서만 존재한다.
System.out.println(i);
}
}
}
중간고사 대체 과제
- 전공 과제 제출 : 일본의 혼네, 타테마에 문화와 광고
Subscribe via RSS