개발자에게 배우는 개발자교육! 구로 오라클자바교육학원 www.oraclejava.co.kr
개발자에게 배우는 개발자교육! 구로 오라클자바교육학원 www.oraclejava.co.kr
클래스와 인스턴스 예제(2)
class Top{
public int a; //필드
public int b;
public int sum(int x, int y) {
return x + y;
}
}
public int a; //필드
public int b;
public int sum(int x, int y) {
return x + y;
}
}
public class TopMain {
public static void main(String[] args){
Top t = new Top(); // Top 객체 생성
t.a = 100; // 멤버 변수 a에 값 할당
t.b = 200;
int s = t.sum(3, 5); // sum() 메서드 호출한 후 리턴값을 s로 값복사
//Top t의 멤버 변수 출력
System.out.println("a는:" + t.a);
System.out.println("b는:" + t.b);
//메서드 호출 결과 출력
System.out.println("t.sum(3,5)의 결과는:" + t.sum(3,5));
System.out.println("s는:" + s);
}
}
public static void main(String[] args){
Top t = new Top(); // Top 객체 생성
t.a = 100; // 멤버 변수 a에 값 할당
t.b = 200;
int s = t.sum(3, 5); // sum() 메서드 호출한 후 리턴값을 s로 값복사
//Top t의 멤버 변수 출력
System.out.println("a는:" + t.a);
System.out.println("b는:" + t.b);
//메서드 호출 결과 출력
System.out.println("t.sum(3,5)의 결과는:" + t.sum(3,5));
System.out.println("s는:" + s);
}
}