클래스 변수와 클래스 메소드는 객체와 무관하게 사용할 수 있기 때문에 클래스 이름으로 접근한다.
class A { //상속을 해준 부모클래스
}
class B extends A { //A를 확장하겠다. 상속을 받은 자식클래스 B, B는 A에 있는 모든 속성과 동작을 그대로 물려받는다.
}
class Person {
String name; // 일반 변수들은 객체를 생성해야만 메모리 공간이 확보된다.
int age;
static String addr; // 클래스 변수 -> 객체와 무관하게 사용하거나 모든 객체가 공동으로 사용하는 기억공간
public void sayHello() { //일반 메소드
System.out.println("안녕, " + name);
}
public static void pro() { //객체와 무관하게 객체없이도 동작하고 싶을 때 앞에 static을 붙여준다. ==> 클래스메소드
System.out.println("Person의 pro 입니다.");
//System.out.println(name); //name, age는 static 안에서 접근 할 수 없다.
System.out.println(addr); //가능
//static 메소드(클래스메소드) 안에서는 static 멤버(클래스변수, 클래스메소드)에만 접근할 수 있다.
//객체를 생성해야만 확보되는 일반멤버에는 접근할 수 없다!
}
}
public class PersonTest {
public static void main(String[] args) {
Person.pro(); //static 메소드는 객체와 무관하게 호출할 수 있다. 클래스 이름으로 접근한다.
Person.addr = "서울시 마포구 서교동"; // 객체 없이 접근해야 하므로 클래스 이름으로 접근한다. ==> 클래스변수
System.out.println(Person.addr);
Person kim = new Person(); // 객체생성 , 객체를 생성해야지만 위에 class Person에 있는 name과 age 세트만큼 메모리가 잡힌다.
Person lee = new Person(); // lee와 kim의 name, age는 별도의 메모리
kim.name = "김민혁";
kim.age = 28;
lee.name = "이진주";
lee.age = 26;
kim.sayHello();
lee.sayHello(); //일반 멤버 메소드는 반드시 객체를 생성하고 그 객체를 통해서 사용할 수 있다.
System.out.println(kim.name + ", " + kim.age + ", " + kim.addr); // 객체가 있으면 객체를 통해서도 접근할 수 있다.
System.out.println(lee.name + ", " + lee.age + ", " + lee.addr);
kim.addr = "제주도 서귀포시 애월읍"; // 공동으로 사용하는 기억공간이기 때문에 모든 addr이 바뀐다.
System.out.println(kim.addr); // 객체가 있으면 객체를 통해서도 접근할 수 있다.
System.out.println(lee.addr);
System.out.println(Person.addr);
}
}
class Person { //부모의 생성자가 먼저 동작한다.
public Person() {
System.out.println("Person의 생성자 동작함!");
}
}
class Customer extends Person { // 부모의 생성자가 동작한 후에 자식의 생성자가 동작한다.
public Customer() {
//super(); //부모의 매개변수를 갖지 않는 생성자 ==> 기본생성자를 요구하는 명령이 생략되어있다.
System.out.println("Customer의 생성자 동작함.");
}
}
public class PersonTest {
public static void main(String[] args) {
Customer c = new Customer(); //기본생성자가 제공된다는 것
}
}
//하늘을 날으는 새
class Bird {
protected String name, color;
protected boolean wing; //날개의 여부
public Bird(String name, String color, boolean wing) {
super();
this.name = name;
this.color = color;
this.wing = wing;
}
public Bird() {
super();
// TODO Auto-generated constructor stub
}
public void fly() {
if(wing == true) {
System.out.println(color + "색 " + name + "이(가) 펄럭~펄럭~");
} else {
System.out.println(color + "색 " + name + "이(가) 날 수 없어요.");
}
}
}
//비행기
//fly 메소드를 오버라이딩
class Plane extends Bird {
private boolean engine;
public Plane(String name, String color, boolean wing, boolean engine) {
super(name, color, wing);
this.engine = engine;
}
public Plane() {
super();
// TODO Auto-generated constructor stub
}
public void fly() {
if(wing == true && engine == true) {
System.out.println(color + "색 " + name + "이(가) 쓩~쓩~, " + "엔진이 있어요 !");
} else {
System.out.println(color + "색 " + name + "이(가) 날 수 없고, " + "엔진이(가) 없어요! !");
}
}
}
public class BirdTest {
public static void main(String[] args) {
Bird b1 = new Bird("참새", "노랑", true);
Bird b2 = new Bird("까치", "검은", false);
b1.fly();
b2.fly();
Plane p = new Plane("보잉747", "하늘", true, true);
p.fly();
}
}
원을 나타내는 Circle 클래스를 상속받아서 피자를 나타내는 Pizza 클래스를 작성해보자.
package practice274;
class Circle {
protected int radius;
public Circle(int r) {
radius = r;
}
public Circle() {
super();
// TODO Auto-generated constructor stub
}
}
class Pizza extends Circle {
private String name;
public Pizza(String name, int r) {
super(r);
this.name = name;
}
public void print() {
System.out.println("피자의 종류:" + name + ", 피자의 크기: " + radius);
}
}
public class CircleTest {
public static void main(String[] args) {
Pizza obj = new Pizza("Pepperoni", 20);
obj.print();
}
}
동물을 나타내는 Animal 클래스를 상속받아서 새를 나타내는 Bird 클래스를 작성해보자. Bird 클래스안에 포함된 main()을 실행하였을 때 아래와 같은 결과가 출력되도록 하라.
package practice274;
class Animal {
void walk() {
System.out.println("걷을 수 있음");
}
}
class Bird extends Animal {
public Bird() {
super();
// TODO Auto-generated constructor stub
}
void fly() {
System.out.println("날을 수 있음");
}
void sing() {
System.out.println("노래 부를 수 있음");
}
}
public class AnimalTest {
public static void main(String[] args) {
Bird bird = new Bird();
bird.walk();
bird.fly();
bird.sing();
}
}
일반적인 경기를 나타내는 Sports 클래스를 다음과 같이 정의한다. 이 클래스를 상속받아서 축구를 나타내는 클래스 Soccer를 작성하고 getName()과 getPlayer()를 재정의하여서 다음과 같은 출력이 나오도록 하라.
package practice274;
class Sports {
String getName() {
return "아직 결정되지 않음";
}
int getPlayers() {
return 0;
}
}
class Soccer extends Sports {
String getName() {
return "축구";
}
int getPlayers() {
return 11;
}
}
public class SportTest {
public static void main(String[] args) {
Soccer s = new Soccer();
System.out.println("경기이름: " + s.getName());
System.out.println("경기자수: " + s.getPlayers());
}
}
일반적인 사각형을 나타내는 Rectangle 클래스가 다음과 같이 정의된다. 위의 Rectangle 클래스를 상속받아서 색이 있는 사각형을 나타내는 ColorRectangle클래스를 정의한다. ColorRectangle 클래스에는 색상을 나타내는 필드 String color가 추가된다. ColorRectangle 클래스의 생성자를 작성해보자.
package practice274;
class Rectangle {
int width, height;
public Rectangle(int width, int height) {
this.width = width;
this.height = height;
}
public Rectangle() {
super();
// TODO Auto-generated constructor stub
}
}
class ColorRectangle extends Rectangle{
String color;
public ColorRectangle() {
super();
// TODO Auto-generated constructor stub
}
public ColorRectangle(int width, int height, String color) {
super(width, height);
this.color = color;
// TODO Auto-generated constructor stub
}
}
public class RectangleTest {
public static void main(String[] args) {
ColorRectangle obj = new ColorRectangle(100, 100, "blue");
System.out.println("가로: " + obj.width);
System.out.println("세로: " + obj.height);
System.out.println("색상: " + obj.color);
}
}