์ฌ์ง์ฒ๋ผ Person.classr ๊ฐ์ฒด ํ์ผ์ด ์๋ค๋ฉด ํด๋์ค๋ ๊ฐ์ฒด๋ฅผ ๋ง๋ค๊ธฐ์ํ ์ค๊ณ๋์!
1๏ธโฃ Person.classr ํด๋์ค ํ์ผ
public class Person() {
...
}
2๏ธโฃ new ํค์๋๋ก ๊ฐ์ฒด ์์ฑ, ์ด๊ณผ์ ์ ์ธ์คํด์คํ๋ผ๊ณ ํํํจ
public class Main {
public static void main(String[] args) {
Person personA = new Person(); // โ
์ฒซ๋ฒ์งธ ๊ฐ์ฒด ์์ฑ
Person personB = new Person(); // โ
๋๋ฒ์งธ ๊ฐ์ฒด ์์ฑ
}
}
class ํด๋์ค {
// 1. ์์ฑ ๋์ด ์ด๋ฆ ์ฃผ์
// 2. ์์ฑ์
// 3. ๊ธฐ๋ฅ
}
public class Main {
public static void main(String[] args) {
// 1. ๊ฐ์ฒด ์์ฑ
Person personA = new Person();
Person personB = new Person();
// โ
๊ฐ์ฒด๋ฅผ ํตํด ์ ๊ทผ personA ์ name
System.out.println(personA.name);
// โ
๊ฐ์ฒด๋ฅผ ํตํด ์ ๊ทผ personB ์ name
System.out.println(personB.name);
}
}
์ด๋ฆ ๋์ด๋ง์ ๊ฐ์ง๊ณ ์๋ ๊ฐ์ฒด๋ฅผ ๋ง๋จ๋ค๋ฉด ์๋ ๊ฐ์ฒด ์์ฑํ๋ฉด๋ (address ์ ์ธ์ ์ด๊ฑด ๋ฌผ์ด๋ด์ผ๊ฒ ๋ค)
1๏ธโฃ ํด๋์ค ๊ฐ์ฒด ์์ฑ
public class Person {
String name;
int age;
String address;
Person() {} // โ ๊ธฐ๋ณธ์์ฑ์ ์ ๊ฑฐ!!!
Person(String name, int age) { // โ
์๋ก์ด ์์ฑ์(์กฐ๋ฆฝ์ค๋ช
์)
this.name = name;
this.age = age;
}
}
2๏ธโฃ Main ์ด์ ์ฝ๋ ์๋ฌ๋ฐ์
โ ๏ธ this ํค์๋๋ ๊ฐ์ฒด ์์ ์ ๊ฐ๋ฆฌํค๋ ํค์๋ ์ฆ ํ์ฌ ์คํ์ค์ธ ๊ฐ์ฒด๋ฅผ ์๋ฏธํจ.
public class Main {
public static void main(String[] args) {
Person personA = new Person(); // โ ์๋ฌ๋ฐ์
Person personB = new Person(); // โ ์๋ฌ๋ฐ์
}
}
3๏ธโฃ ๋ ๋ฐ์ง์ฐ ๋นํฉ๋ ธ๋ ธ Main(tring name, int age)๊ฐ ์ฅ ๋ฃ์ด์ฃผ๊ธฐ
public class Main {
public static void main(String[] args) {
Person personA = new Person("gygim", 10); // โ
์กฐ๋ฆฝ์ค๋ช
์ ์ค์
Person personB = new Person("Steve", 5); // โ
์กฐ๋ฆฝ์ค๋ช
์ ์ค์
}
}
1๏ธโฃ ํด๋์ค ๊ฐ์ฒด์์ฑ
class Person {
...
// โ
์ฌ๋์ ์๊ฐ ๊ธฐ๋ฅ
void introduce() {
System.out.println("์๋
ํ์ธ์.");
System.out.println("๋์ ์ด๋ฆ์ " + this.name + "์
๋๋ค.");
System.out.println("๋์ด๋ " + this.age + "์
๋๋ค.");
}
// โ
์ฌ๋์ ๋ํ๊ธฐ ๊ธฐ๋ฅ
int sum(int a, int b) {
int result = a + b;
return result;
}
}
2๏ธโฃ Main
public class Main {
public static void main(String[] args) {
Person personA = new Person("gygim", 10);
personA.introduce(); // โ
personA ๊ฐ์ฒด introduce() ํธ์ถ
Person personB = new Person("Steve", 5);
}
}
๐ Person ํด๋์ค (์ค๊ณ๋)
class Person {
// ์์ฑ
String name;
int age;
// ์์ฑ์
Person(String name, int age) {
this.name = name;
this.age = age;
}
// ๊ธฐ๋ฅ (๋ฉ์๋)
void introduce() {
System.out.println("\n์๋
ํ์ธ์.");
System.out.println("๋์ ์ด๋ฆ์ " + this.name + "์
๋๋ค.");
System.out.println("๋์ด๋ " + this.age + "์ด์
๋๋ค.");
}
// ๋ ์๋ฅผ ๋ํ๋ ๊ธฐ๋ฅ (๋ฉ์๋)
int sum(int a, int b) {
return a + b;
}
}
๐ ํ๋ก๊ทธ๋จ ์คํ์ ์ํ Main ํด๋์ค
public class Main {
public static void main(String[] args) {
// ์ฒซ ๋ฒ์งธ ์ฌ๋ ์์ฑ
Person personA = new Person("gygim", 10);
personA.introduce(); // ์๊ธฐ์๊ฐ ์ถ๋ ฅ
// ๋ ๋ฒ์งธ ์ฌ๋ ์์ฑ
Person personB = new Person("Steve", 5);
personB.introduce(); // ์๊ธฐ์๊ฐ ์ถ๋ ฅ
// ๊ฐ์ฒด๋ฅผ ์ด์ฉํด ๋ํ๊ธฐ ๊ธฐ๋ฅ ์ฌ์ฉ
int result = personA.sum(3, 4);
System.out.println("\n3 + 4์ ๊ฒฐ๊ณผ๋ " + result + "์
๋๋ค.");
}
}
๐ก ๊ฒํฐ๋ ์ ์ฌ์ฉํด์ผํ์ง?
1๏ธโฃ ๊ฐ์ฒด์ ํ๋๋ฅผ private์ผ๋ก ๋ณดํธ(์บก์ํ) โ ์ง์ ์ ๊ทผ ๋ฐฉ์ง! ๐ซ
2๏ธโฃ ํ๋ ๊ฐ์ ๊ฐ์ ธ์ฌ ๋ ์ถ๊ฐ ๋ก์ง์ ๋ฃ์ ์ ์์ (๋ฐ์ดํฐ ๋ณํ, ๊ฒ์ฆ ๋ฑ)
3๏ธโฃ ํด๋์ค ๋ด๋ถ ๊ตฌํ์ ๋ณ๊ฒฝํด๋ ์ธ๋ถ ์ฝ๋๋ฅผ ์์ ํ ํ์ ์์
String name = person.getName();
int age = person.getAge();
String address = person.getAddress();
1๏ธโฃ ํด๋์ค ๊ฐ์ฒดํ์ผ์ ์ถ๊ฐ
class Person {
private String name;
private int age;
private String address;
// ์์ฑ์
public Person(String name, int age, String address) {
this.name = name;
this.age = age;
this.address = address;
}
// ๊ฒํฐ (Getter) ๋งค์๋
public String getName() {
return name;
}
public int getAge() {
return age;
}
public String getAddress() {
return address;
}
}
2๏ธโฃ Main ๊ฒํฐ ํธ์ถ
public class Main {
public static void main(String[] args) {
// ๐ค Person ๊ฐ์ฒด ์์ฑ
Person person = new Person("gygim", 25, "Seoul");
// ๐ข ๊ฒํฐ ํธ์ถํ์ฌ ์์ฑ ๊ฐ์ ธ์ค๊ธฐ
String name = person.getName();
int age = person.getAge();
String address = person.getAddress();
// ๐จ ์ถ๋ ฅ
System.out.println("์ด๋ฆ: " + name);
System.out.println("๋์ด: " + age);
System.out.println("์ฃผ์: " + address);
}
}
๐ก์ธํฐ๋ฅผ ์ฌ์ฉํด์ผํ๋์ด์ ?
1๏ธโฃ ๊ฐ์ฒด์ ์์ฑ์ private์ผ๋ก ๋ณดํธ (์บก์ํ)
โ ์ง์ ์์ ๋ฐฉ์ง, ๋ฉ์๋๋ฅผ ํตํด ๋ณ๊ฒฝ ๊ฐ๋ฅ ๐ซ
2๏ธโฃ ๋ณ๊ฒฝํ ๋ ์ถ๊ฐ ๋ก์ง์ ๋ฃ์ ์ ์์
โ ๊ฐ์ด ์ ํจํ์ง ํ์ธ ๊ฐ๋ฅ!
3๏ธโฃ ๊ฐ์ฒด ๋ด๋ถ ๊ตฌํ์ด ๋ฐ๋์ด๋ ์ธ๋ถ ์ฝ๋ ์์ ํ์ ์์
โ ์ ์ง๋ณด์๊ฐ ์ฌ์์ง!
๐ ์์ (๋์ด๊ฐ 0๋ณด๋ค ์์ผ๋ฉด ๋ณ๊ฒฝ ๋ถ๊ฐ)
if (age < 0) {
System.out.println("๋์ด๋ 0์ด ๋ ์ ์์ต๋๋ค!");
} else {
this.age = age;
}
}
1๏ธโฃ ํด๋์ค ๊ฐ์ฒดํ์ผ์ ์ถ๊ฐ
class Person {
private String name;
private int age;
private String address;
// ์์ฑ์
public Person(String name, int age) {
this.name = name;
this.age = age;
}
// Getter (๊ฒํฐ): ์์ฑ ๊ฐ์ ๊ฐ์ ธ์ค๊ธฐ
public String getName() { return name; }
public int getAge() { return age; }
public String getAddress() { return address; }
// Setter (์ธํฐ): ์์ฑ ๊ฐ์ ๋ณ๊ฒฝํ๊ธฐ
public void setName(String name) {
this.name = name;
}
public void setAge(int age) {
this.age = age;
}
public void setAddress(String address) {
this.address = address;
}
}
2๏ธโฃ Main ์์ ์ธํฐ ์ฌ์ฉํ๊ธฐ
public class Main {
public static void main(String[] args) {
// ๊ฐ์ฒด ์์ฑ
Person personA = new Person("gygim", 20);
Person personB = new Person("Steve", 15);
// ์ธํฐ () ๋ฉ์๋๋ฅผ ์ฌ์ฉํ์ฌ ์ฃผ์ ๋ณ๊ฒฝ
personA.setAddress("์์ธ");
personB.setAddress("๋ฏธ๊ตญ");
// ๊ฐ ์ถ๋ ฅ
System.out.println(personA.getName() + "์ ์ฃผ์: " + personA.getAddress());
System.out.println(personB.getName() + "์ ์ฃผ์: " + personB.getAddress());
}
}
gygim์ ์ฃผ์: ์์ธ
Steve์ ์ฃผ์: ๋ฏธ๊ตญ
Method Area (๋์๊ด ๋น์ )
Stack Area(์ ์ ์๊ธฐ ๋น์ )
๐ก ์์ฌ์ฉํ ๊น?์์๋ณผ๊น๋
- ๊ธฐ๋ณธํ(int, double ๋ฑ)์ ๊ทธ๋ฅ ์ซ์์ผ ๋ฟ, ๊ธฐ๋ฅ์ด ์๋ค!
โ int ์์ฒด๋ก๋ ์๋ฌด ๊ธฐ๋ฅ๋ ๋ชป ํ์ง๋ง, Integer๋ ์ซ์๋ฅผ ๋ณํํ๊ฑฐ๋ ๋น๊ตํ๋ ๊ธฐ๋ฅ์ ์ ๊ณตํจ- ๊ธฐ๋ณธํ์ ๋ฆฌ์คํธ(List)์ ๋ชป ๋ฃ๋๋ค!
โ List๋ ์ ๋์ง๋ง, List๋ ๊ฐ๋ฅ! ๊ทธ๋์ ๊ธฐ๋ณธํ์ ๊ฐ์ฒด(Integer)๋ก ๊ฐ์ธ์ผ ํจ- null ๊ฐ์ ์ ์ฅํ ์ ์๋ค!
โ int num = null; โ ์ค๋ฅ ๋ฐ์! ์ ๊ฒ์ ์ซ์๊ฑฐ๋ฉ
โ Integer num = null; โ ๊ฐ๋ฅ!์๋ ๊ฐ์ฒด๋๊น์๊ฐ๋ฅ- ์๋ฐ๊ฐ ์๋์ผ๋ก ๋ณํํด ์ค๋ค!
โ Integer num = 10; (int๊ฐ ์๋์ผ๋ก Integer๋ก ๋ณํ๋จ)
โ int value = num; (Integer๊ฐ ์๋์ผ๋ก int๋ก ๋ณํ๋จ)
= ์ฆ ๋ณธํ์ ๊ฐ์ฒด์ฒ๋ผ ๋ค๋ฃฐ ์ ์๊ฒ ํด ์ฃผ๋ ๊ฒ ๋ ํผํด๋ผ์ค, ํ ๋ฌ์ง๋ง ์ง์ฐ์๐
์๋ฃํ | ๋ํผํด๋์ค | ์ข ๋ฅ | ๋ฒ์ | ๋ฐ์ดํธ | ๋นํธ |
---|---|---|---|---|---|
boolean |
Boolean |
๋ ผ๋ฆฌํ | true ๋๋ false | 1 | 8 |
char |
Character |
๋ฌธ์ํ | 0 ~ 65535 (์ ๋์ฝ๋ ๊ฐ) | 2 | 16 |
byte |
Byte |
์ ์ํ | -128 ~ 127 | 1 | 8 |
short |
Short |
์ ์ํ | -32,768 ~ 32,767 | 2 | 16 |
int |
Integer |
์ ์ํ | -2,147,483,648 ~ 2,147,483,647 | 4 | 32 |
long |
Long |
์ ์ํ | -9,233,372,036,854,775,808 ~ 9,233,372,036,854,775,807 | 8 | 64 |
float |
Float |
์ค์ํ | ์ฝ ์์์ 6~7์๋ฆฌ๊น์ง | 4 | 32 |
double |
Double |
์ค์ํ | ์ฝ ์์์ 15~17์๋ฆฌ๊น์ง | 8 | 64 |
1๏ธโฃ ํด๋์ค ๊ฐ์ฒดํ์ผ
class CustomInteger {
// ์์ฑ
int value;
// ์์ฑ์
CustomInteger(int value) {
this.value = value;
}
// ๊ธฐ๋ฅ
// ๊ฐ์ ๊ฐ์ ธ์ค๋ ๋ฉ์๋
int getValue() {
return value;
}
// ๊ฐ์ ์ค์ ํ๋ ๋ฉ์๋
void setValue(int value) {
this.value = value;
}
// toString() ์ค๋ฒ๋ผ์ด๋ฉ (๊ฐ์ ์ถ๋ ฅํ ์ ์๋๋ก)
@Override
public String toString() {
return String.valueOf(value);
}
}
1๏ธโฃ ๋ฉ์ธ ํ์ผ
public class Main {
public static void main(String[] args) {
CustomInteger num1 = new CustomInteger(100);
System.out.println(num1); // 100
System.out.println(num1.getValue()); // 100
num1.setValue(200);
System.out.println(num1); // 200
}
}
๋ณ์์ ๊ฐ์ฒด๊ฐ ๋ด๊ธฐ๋ฉด ๋ณ์๋ฅผ ์ฐธ์กฐํ ๋ณ์๋ผ๊ณ ๋งํจ
์ฐธ์กฐํ ๋ณ์๋ ๋ฐ์ดํฐ๊ฐ ์ ์ฅ๋ ๋ฉ๋ชจ๋ฆฌ ์ฃผ์๋ฅผ ๊ฐ๋ฆฌํค๋๋ฐ Heap ๋ฉ๋ชจ๋ฆฌ๊ฐ ๋๋ค
๊ฐ์ฒด๋ฐ์ดํฐ๋ JAM ๋ฉ๋ชจ๋ฆฌ๊ตฌ์กฐ ํ์ ์ ๋น์ ํ๋ Heap ์์ญ์ ์ ์ฅ๋์ด์๊ธฐ ๋๋ฌธ์
๊ฐ์ฒด, ๋ฐฐ์ด๋ฑ์ด ์ฐธ์กฐํ์ ์ํจ
๐ก๊ฐ์ฒด์ผ๊ฒฝ์ฐ
Person personA = new Person("Steve"); โ
๊ฐ์ฒด๊ฐ ๋ด๊ธด personA ๋ ์ฐธ์กฐํ ๋ณ์
Syetem.out.println(personA.name);
System.out.println(personA); // โ
์ถ๋ ฅํ๋ฉด @123 ๋ฉ๋ชจ๋ฆฌ์ ์ฃผ์๊ฐ์ด ์ถ๋ ฅ๋จ
๐ก๋ฐฐ์ด์ผ๊ฒฝ์ฐ
int[] arr = {1, 2, 3, 4}; // โ
๋ฐฐ์ด์ด ๋ด๊ธด arr ๋ ์ฐธ์กฐํ ๋ณ์
System.out.println(arr); // โ
์ถ๋ ฅํ๋ฉด @123 ๋ฉ๋ชจ๋ฆฌ์ ์ฃผ์๊ฐ ์ถ๋ ฅ
1๏ธโฃ ํด๋์ค ๊ฐ์ฒดํ์ผ
class CustomInteger {
// ์์ฑ
int value;
// ์์ฑ์
CustomInteger(int value) {
this.value = value;
}
// ๊ธฐ๋ฅ
// ๊ฐ์ ๊ฐ์ ธ์ค๋ ๋ฉ์๋
int getValue() {
return value;
}
// ๊ฐ์ ์ค์ ํ๋ ๋ฉ์๋
void setValue(int value) {
this.value = value;
}
// toString() ์ค๋ฒ๋ผ์ด๋ฉ (๊ฐ์ ์ถ๋ ฅํ ์ ์๋๋ก)
@Override
public String toString() {
return String.valueOf(value);
}
}
1๏ธโฃ ๋ฉ์ธ ํ์ผ
public class Main {
public static void main(String[] args) {
CustomInteger num1 = new CustomInteger(100);
System.out.println(num1); // 100
System.out.println(num1.getValue()); // 100
num1.setValue(200);
System.out.println(num1); // 200
}
}
์ ์ฒด ํ๋ฆ
1๏ธโฃ CustomInteger(100) โ ์ฒ์์ 100 ์ ์ฅ
2๏ธโฃ System.out.println(num1); โ 100 ์ถ๋ ฅ๋จ
3๏ธโฃ num1.setValue(200); โ ๊ฐ์ด 100 โ 200์ผ๋ก ๋ณ๊ฒฝ๋จ
4๏ธโฃ System.out.println(num1); โ 200 ์ถ๋ ฅ๋จ โ
์ ๋์ง์ง์ ใ
์ง์ ํด ์ง์ฐ์
๋น๊ต ํญ๋ชฉ | ๊ธฐ๋ณธํ (int) | ๋ํผ ํด๋์ค (Integer) |
---|---|---|
๋ฉ๋ชจ๋ฆฌ ์ฌ์ฉ๋ | ์ ๊ฒ ์ฐจ์งํจ int a = 10; |
๋ง์ด ์ฐจ์งํจ (๊ฐ์ฒด๋ก ๊ฐ์ธ์ผ ํด์) Integer b = 10; |
์ฐ์ฐ ์๋ | ๋น ๋ฆ int sum = a + 5; |
๋๋ฆผ (ํฌ์ฅ์ ๋ฒ๊ธฐ๊ณ ๋ค์ ์์ฐ๋ ๊ณผ์ ํ์) Integer sum = b + 5; |
๋ฐฐ์ด/๋ฆฌ์คํธ ์ ์ฅ | ๋ฐฐ์ด์ ์ ์ฅ ๊ฐ๋ฅ int[] arr = {1, 2, 3}; |
๋ฆฌ์คํธ, ๋งต์ ์ ์ฅ ๊ฐ๋ฅ List<Integer> list = new ArrayList<>(); |
null ์ ์ฅ ๊ฐ๋ฅ ์ฌ๋ถ | ๋ถ๊ฐ๋ฅ | ๊ฐ๋ฅ (๊ฐ์ด ์์ ๋ null ์ฌ์ฉ ๊ฐ๋ฅ) Integer c = null; |
์ธ์ ์ฌ์ฉํ๋ฉด ์ข์๊น? | ๋จ์ํ ๊ณ์ฐ, ๋น ๋ฅธ ์ฐ์ฐ์ด ํ์ํ ๋ int result = a * 2; |
๋ฆฌ์คํธ๋ ๋งต์ ์ ์ฅํ ๋, ๊ฐ์ฒด์ฒ๋ผ ๋ค๋ค์ผ ํ ๋ Map<String, Integer> scores = new HashMap<>(); |
int ์ฐ์ฐ ์๊ฐ: 30ms
Integer ์ฐ์ฐ ์๊ฐ: 300ms (10๋ฐฐ ์ด์ ๋๋ฆผ)
public class PerformanceTest {
public static void main(String[] args) {
int iterations = 10_000_000; // 1์ฒ๋ง ๋ฒ ๋ฐ๋ณต
โ๏ธ ๊ธฐ๋ณธํ int ์ฐ์ฐ
long start1 = System.nanoTime();
int sum1 = 0;
for (int i = 0; i < iterations; i++) {
sum1 += i; // ๋ํ๊ธฐ
}
long end1 = System.nanoTime();
System.out.println("int ์ฐ์ฐ ์๊ฐ: " + (end1 - start1) + " ns");
โ๏ธ ๋ํผ ํด๋์ค Integer ์ฐ์ฐ
long start2 = System.nanoTime();
Integer sum2 = 0;
for (int i = 0; i < iterations; i++) {
sum2 += i; // ์ธ๋ฐ์ฑ & ์คํ ๋ฐ์ฑ ๋ฐ์
}
long end2 = System.nanoTime();
System.out.println("Integer ์ฐ์ฐ ์๊ฐ: " + (end2 - start2) + " ns");
}
}
๊ตฌ๋ถ | static ๋ณ์ (ํด๋์ค ๋ณ์) | ์ธ์คํด์ค ๋ณ์ |
---|---|---|
์์ | ํด๋์ค ์์ฒด | ๊ฐ๋ณ ๊ฐ์ฒด |
์์ฑ ์์ | ํด๋์ค๊ฐ ๋ก๋๋ ๋ ๋ฑ ํ ๋ฒ | ๊ฐ์ฒด๊ฐ ์์ฑ๋ ๋๋ง๋ค |
๋ฉ๋ชจ๋ฆฌ ์์ญ | Method Area(๋ฉ์๋ ์์ญ) | Heap ์์ญ |
๊ณต์ ์ฌ๋ถ | โ ๋ชจ๋ ๊ฐ์ฒด๊ฐ ๊ณต์ | โ ๊ฐ์ฒด๋ณ๋ก ๋ ๋ฆฝ์ |
์ ๊ทผ ๋ฐฉ์ | ํด๋์ค๋ช .๋ณ์๋ช | ๊ฐ์ฒด๋ช .๋ณ์๋ช |
๋ณ์ ์ข ๋ฅ | ์ค๋ช | ์์ |
---|---|---|
static ๋ณ์ (ํด๋์ค ๋ณ์) | ๋ชจ๋ ํ์(๊ฐ์ฒด)์ด ํจ๊ป ๊ณต์ ํ๋ ๊ฐ | "ํ๊ต ์ด๋ฆ" ๊ฐ์ ๊ฑฐ! ๋ชจ๋ ๋ฐ(๊ฐ์ฒด)์์ ๊ฐ์ ํ๊ต๋ฅผ ๋ค๋. |
์ธ์คํด์ค ๋ณ์ (๊ฐ์ฒด ๋ณ์) | ๊ฐ ํ์(๊ฐ์ฒด)์ด ๊ฐ๋ณ์ ์ผ๋ก ๊ฐ์ง๋ ๊ฐ | "ํ์ ์ด๋ฆ" ๊ฐ์ ๊ฑฐ! ๊ฐ ํ์(๊ฐ์ฒด)๋ง๋ค ๋ค๋ฅธ ์ด๋ฆ์ ๊ฐ์ง. |
class School {
static String schoolName = "์ฝ๋ฉ ๊ณ ๋ฑํ๊ต"; // ๋ชจ๋ ํ์์ด ๊ณต์ ํ๋ static ๋ณ์
String studentName; // ๊ฐ ํ์๋ง๋ค ๋ค๋ฅธ ์ธ์คํด์ค ๋ณ์
\
School(String name) { // ์์ฑ์ (ํ์ ์ด๋ฆ ์ค์ )
this.studentName = name;
}
}
๐ static ๋ณ์(ํด๋์ค ๋ณ์)
ํด๋์ค๊ฐ ๋ก๋๋ ๋ ํ ๋ฒ๋ง ์์ฑ๋๊ณ , ๋ชจ๋ ๊ฐ์ฒด๊ฐ ๊ณต์ ํจ
static int count = 0; // ๋ชจ๋ ๊ฐ์ฒด๊ฐ ๊ณต์ ํ๋ ๋ณ์ public Counter() { count++; // ์์ฑ๋ ๋๋ง๋ค count ์ฆ๊ฐ } } public class Main { public static void main(String[] args) { Counter c1 = new Counter(); Counter c2 = new Counter(); Counter c3 = new Counter(); System.out.println(Counter.count); // โญ๏ธ ์ถ๋ ฅ: 3 (๋ชจ๋ ๊ฐ์ฒด๊ฐ ๊ฐ์ ๋ณ์ ๊ณต์ ) } }
๐ static ๋ฉ์๋(ํด๋์ค ๋ฉ์๋)
๊ฐ์ฒด ์์ด ํธ์ถํ ์ ์๊ณ , ์ธ์คํด์ค ๋ณ์๋ ์ฌ์ฉํ ์ ์์
class MathUtils { static int add(int a, int b) { return a + b; } } public class Main { public static void main(String[] args) { int result = MathUtils.add(10, 20); // โ ํด๋์ค๋ช .๋ฉ์๋๋ช () ํธ์ถ System.out.println(result); // ์ถ๋ ฅ: 30 } }```
๊ฐ์ฒด๋ฅผ ๋ง๋ค ๋ ์์ฑ๋๋ ๋ณ์์ ๋ฉ์๋
ํด๋์ค๋ง์ผ๋ก๋ ์ ๊ทผํ ์ ์์! (new ํค์๋๋ก ๊ฐ์ฒด ์์ฑ ํ์)
๊ฐ ๊ฐ์ฒด๋ง๋ค ๊ฐ๋ณ์ ์ผ๋ก ๊ฐ์ ๊ฐ์ง (๊ณต์ ์๋จ)
Heap ์์ญ์ ์ ์ฅ๋จ (๊ฐ์ฒด๊ฐ ์ฌ๋ผ์ง๋ฉด ๊ฐ์ด ์ญ์ ๋จ)
class Student {
String name; // ์ธ์คํด์ค ๋ณ์
void introduce() { // ์ธ์คํด์ค ๋ฉ์๋
System.out.println("์๋
ํ์ธ์! ์ ๋ " + name + "์
๋๋ค.");
}
}
public class Main {
public static void main(String[] args) {
Student student1 = new Student(); //
student1.name = "์ง์ฐ";
student1.introduce(); // ์ถ๋ ฅ: ์๋
ํ์ธ์! ์ ๋ ์ง์ฐ์
๋๋ค.
Student student2 = new Student();
student2.name = "๋ฏผ์";
student2.introduce(); // ์ถ๋ ฅ: ์๋
ํ์ธ์! ์ ๋ ๋ฏผ์์
๋๋ค.
}
}
โ
ํ์ธํ๊ธฐ
void introduce() // void โ ๋ฐํ๊ฐ์ด ์์ (๋จ์ํ ์คํ๋ง ํจ) , introduce() โ ์ด ๋ฉ์๋ ์ด๋ฆ (์๊ธฐ์๊ฐํ๋ ๊ธฐ๋ฅ)
System.out.println("์๋
ํ์ธ์! ์ ๋ " + name + "์
๋๋ค."); //โ name์ ์ ์ฅ๋ ๊ฐ๊ณผ ํจ๊ป ์ถ๋ ฅ
Student student1 = new Student() //๊ฐ์ฑ์์ฑ
๊ตฌ๋ถ | ์ธ์คํด์ค ๋ณ์ | ํด๋์ค ๋ณ์ (static) | ์ธ์คํด์ค ๋ฉ์๋ | ํด๋์ค ๋ฉ์๋ (static) |
---|---|---|---|---|
์์ฑ ์์ | ๊ฐ์ฒด๊ฐ ์์ฑ๋ ๋ | ํด๋์ค๊ฐ ๋ก๋๋ ๋ | ๊ฐ์ฒด๊ฐ ์์ฑ๋ ๋ | ํด๋์ค๊ฐ ๋ก๋๋ ๋ |
๋ฉ๋ชจ๋ฆฌ ์์น | Heap (๊ฐ์ฒด๋ณ ์ ์ฅ) | Method Area (๊ณต์ ) | Heap | Method Area (๊ณต์ ) |
๊ณต์ ์ฌ๋ถ | โ ๊ฐ์ฒด๋ง๋ค ๋ ๋ฆฝ์ | โ ๋ชจ๋ ๊ฐ์ฒด๊ฐ ๊ณต์ | โ ๊ฐ์ฒด๋ณ๋ก ์คํ | โ ๊ฐ์ฒด ์์ด ์คํ ๊ฐ๋ฅ |
์ ๊ทผ ๋ฐฉ๋ฒ | ๊ฐ์ฒด๋ช .๋ณ์๋ช | ํด๋์ค๋ช .๋ณ์๋ช | ๊ฐ์ฒด๋ช .๋ฉ์๋๋ช () | ํด๋์ค๋ช .๋ฉ์๋๋ช () |
์ธ์คํด์ค ๋ณ์ ์ฌ์ฉ | โ ๊ฐ๋ฅ | โ ๋ถ๊ฐ๋ฅ | โ ๊ฐ๋ฅ | โ ๋ถ๊ฐ๋ฅ |
class Constants {
static final double PI = 3.141592; // โ
์์ฃผ์จ ์์
static final int MAX_USER = 100; // โ
์ต๋ ์ฌ์ฉ์ ์
}public class Main {
public static void main(String[] args) {
// โ
๊ฐ์ฒด ์์ฑ ์์ด ํด๋์ค๋ช
.์์๋ช
์ผ๋ก ์ง์ ์ ๊ทผ ๊ฐ๋ฅ
System.out.println("์์ฃผ์จ: " + Constants.PI);
System.out.println("์ต๋ ์ฌ์ฉ์ ์: " + Constants.MAX_USER);
}
}
์ถ๋ ฅ ๊ฒฐ๊ณผ
์์ฃผ์จ: 3.141592
์ต๋ ์ฌ์ฉ์ ์: 100
class Messages {
static final String WELCOME = "ํ์ํฉ๋๋ค!";
static final String ERROR = "์ค๋ฅ๊ฐ ๋ฐ์ํ์ต๋๋ค.";
}
public class Main {
public static void main(String[] args) {
System.out.println(Messages.WELCOME); // โ
"ํ์ํฉ๋๋ค!" ์ถ๋ ฅ
System.out.println(Messages.ERROR); // โ
"์ค๋ฅ๊ฐ ๋ฐ์ํ์ต๋๋ค." ์ถ๋ ฅ
โ ํด๋์ค๊ฐ ๋ ๊ฐ ์์ง๋ง, Messages๋ ์คํ์ฉ์ด ์๋๋ผ ์์ ์ ์ฅ์ฉ
โ Main ํด๋์ค์์ Messages์ ์์๋ฅผ ๋ถ๋ฌ์์ ์ฌ์ฉ ๐
}
}
public final class Circle {
final static double PI = 3.14159; // โ
1๏ธโฃ ํด๋์ค๊ฐ ๋ก๋๋ ๋ ์ ์ฅ๋จ
final double radius; // โ
3๏ธโฃ ๊ฐ์ฒด๊ฐ ์์ฑ๋ ๋ ๊ฐ์ด ์ค์ ๋จ
Circle(double radius) {
this.radius = radius; // โ
4๏ธโฃ ์์ฑ์ ์คํ -> radius ๊ฐ์ด ๊ณ ์ ๋จ
}
}
// โ
2๏ธโฃ main ์คํ (๊ฐ์ฒด ์์ฑ ์์!)
public class Main {
public static void main(String[] args) {
Circle circle1 = new Circle(10.0); // โ
5๏ธโฃ ๋ฐ์ง๋ฆ 10์ง๋ฆฌ ์ ์์ฑ!
Circle circle2 = new Circle(5.0); // โ
6๏ธโฃ ๋ฐ์ง๋ฆ 5์ง๋ฆฌ ์ ์์ฑ!
}
}
}
}
PI (static final)
โ ํด๋์ค๊ฐ ์ฒ์ ๋ก๋๋ ๋ ์ ์ฅ๋๊ณ , ๋ชจ๋ ๊ฐ์ฒด๊ฐ ๊ณต์ !
radius (final)
โ ๊ฐ์ฒด๋ง๋ค ๊ฐ๋ณ ์ ์ฅ๋๊ณ , ์์ฑ์์์ ํ ๋ฒ๋ง ์ค์ ๊ฐ๋ฅ!
๋ชจ๋ ์ค๊ณ์๋ ํ์ค์ด ํ์ํ๋ค!
์ธํฐํ์ด์ค๋ ํด๋์ค๊ฐ ๋ฐ๋์ ๋ฐ๋ผ์ผ ํ ๊ท์น(ํ์ค)์ ์ ์ํ๋ ์ญํ ํจ!
๐ก ์ธํฐํ์ด์ค๋ฅผ ์ฌ์ฉํ๋ ์ด์ ?
- ๊ฐ๋ฐ์๋ง๋ค ๋ค๋ฅธ ๋ฐฉ์์ผ๋ก ๋ฉ์๋๋ฅผ ๋ง๋ ๋ค๋ฉด ์ผ๊ด์ฑ์ด ๊นจ์ง!
- ์ธํฐํ์ด์ค๋ฅผ ํ์ฉํ๋ฉด ์ต์ํ์ ๊ท๊ฒฉ์ ์ ํ ์ ์์!
- ์ธ๋ถ ๊ตฌํ์ ๊ฐ ํด๋์ค์์ ์์ ๋กญ๊ฒ ํ์ฅ ๊ฐ๋ฅ!
- ์ ์ง๋ณด์์ ํ์ฅ์ฑ์ด ๋ฐ์ด๋ ์ฝ๋ ์์ฑ ๊ฐ๋ฅ!
๐ข ์ธํฐํ์ด์ค๋ฅผ ํ์ฌ ๊ท์น์ผ๋ก์๊ฐ ํด ๋ณด์!
๊ฐ๋ | ์์ | ์ค๋ช |
---|---|---|
์ธํฐํ์ด์ค | ํ์ฌ์ ๊ท์น์ ๐ | "์ถ๊ทผ ์๊ฐ์ 9์!" "์ด๋ฉ์ผ ๋๋ฉ์ธ์ @company.com!" |
ํด๋์ค | ์ง์ ๐งโ๐ป | ๊ฐ๋ฐ์๋ ์ฝ๋ฉ() ,๋์์ด๋๋ ๋์์ธ() ์ ํด์ผ ํจ! |
class Employee {
void work() {
System.out.println("์ง์์ด ์ผ์ ํฉ๋๋ค!");
}
}
class Developer extends Employee {
@Override
void work() {
System.out.println("๐จโ๐ป ๊ฐ๋ฐ์๊ฐ ์ฝ๋ฉ์ ํฉ๋๋ค!");
}
}
class Designer extends Employee {
@Override
void work() {
System.out.println("๐จ ๋์์ด๋๊ฐ ๋์์ธ์ ํฉ๋๋ค!");
}
}
public class Main {
public static void main(String[] args) {
Developer dev = new Developer();
dev.work(); // ์ถ๋ ฅ: ๐จโ๐ป ๊ฐ๋ฐ์๊ฐ ์ฝ๋ฉ์ ํฉ๋๋ค!
Designer des = new Designer();
des.work(); // โ
์ถ๋ ฅ: ๐จ ๋์์ด๋๊ฐ ๋์์ธ์ ํฉ๋๋ค!
}
(์ฌ๋ฌ ๊ตฌํ์ฒด๋ฅผ ๋์ผํ ํ์ ์ผ๋ก ๋ค๋ฃฐ ์ ์์!)
์ธํฐํ์ด์ค ํ์ ์ผ๋ก ๊ฐ์ฒด๋ฅผ ๋ค๋ฃจ๋ฉด, ์ ์ฐํ ์ฝ๋๋ฅผ ์์ฑํ ์ ์์!
๊ฐ์ฒด์ ์ค์ ํ์ (๊ตฌํ์ฒด)์ ๋ฐ๋ผ ๋ค๋ฅด๊ฒ ๋์(๋คํ์ฑ)ํจ.
์ ์ง๋ณด์์ฑ๊ณผ ํ์ฅ์ฑ์ด ์ข์์ง!
๐ ๋ค์ค๊ตฌํ ์์(Main,Dog,Cat class 3๊ฐ)
// 1๏ธโฃ ์ธํฐํ์ด์ค ์ ์ -Animal ์ธํฐํ์ด์ค๋ฅผ ํตํด Dog, Cat์ ๋์ผํ ํ์
์ผ๋ก ๋ค๋ฃฐ ์ ์์
interface Animal {
void sound(); // ๋๋ฌผ ์๋ฆฌ๋ฅผ ๋ด๋ ๋ฉ์๋
}
// 2๏ธโฃ ์ธํฐํ์ด์ค ๊ตฌํ ํด๋์ค (๊ตฌํ์ฒด)
class Dog implements Animal {
@Override
public void sound() {
System.out.println("๐ถ ๋ฉ๋ฉ!");
}
} //3๏ธโฃ ์ธํฐํ์ด์ค ๊ตฌํ ํด๋์ค (๊ตฌํ์ฒด)
class Cat implements Animal {
@Override
public void sound() {
System.out.println("๐ฑ ์ผ์น!");
}
}
public class Main {
public static void main(String[] args) {
// 4๏ธโฃ ๋คํ์ฑ์ ํ์ฉํ์ฌ ์ธํฐํ์ด์ค ํ์
์ผ๋ก ๊ฐ์ฒด๋ฅผ ๋ค๋ฃธ!
Animal myPet1 = new Dog();
Animal myPet2 = new Cat();
myPet1.sound(); // ์ถ๋ ฅ: ๐ถ ๋ฉ๋ฉ!
myPet2.sound(); // ์ถ๋ ฅ: ๐ฑ ์ผ์น!
}
}
์๋ฐ์์๋ extends๋ฅผ ์ด์ฉํ ํด๋์ค ๋ค์ค ์์์ ๋ถ๊ฐ๋ฅํ์ง๋ง,
implements๋ฅผ ํ์ฉํ๋ฉด ์ฌ๋ฌ ๊ฐ์ ์ธํฐํ์ด์ค๋ฅผ ๋์์ ๋ค์ค ๊ตฌํ ํ ์ ์๋ค.
// โ
๋๋ฌผ ์ธํฐํ์ด์ค
interface Animal {
void sound(); // ๋๋ฌผ์ ์๋ฆฌ๋ฅผ ๋ธ๋ค
}
// โ
๋ ์ ์๋ ์ธํฐํ์ด์ค
interface Flyable {
void fly(); // ๋ ์ ์๋ค
}
// โ
๋ฐ์ฅ ํด๋์ค: Animal, Flyable ๋ ์ธํฐํ์ด์ค๋ฅผ ๊ตฌํ (๋ค์ค ๊ตฌํ)
class Bat implements Animal, Flyable {
@Override
public void sound() {
System.out.println("๋ฐ์ฅ๊ฐ ์ด์ํ๋ฅผ ๋
๋๋ค!");
}
@Override
public void fly() {
System.out.println("๋ฐ์ฅ๊ฐ ๋ ์๊ฐ๋๋ค!");
}
}
public class Main {
public static void main(String[] args) {
Bat bat = new Bat(); // ๋ฐ์ฅ ๊ฐ์ฒด ์์ฑ
bat.sound(); // ์ถ๋ ฅ: ๋ฐ์ฅ๊ฐ ์ด์ํ๋ฅผ ๋
๋๋ค!
bat.fly(); // ์ถ๋ ฅ: ๋ฐ์ฅ๊ฐ ๋ ์๊ฐ๋๋ค!
}
}
๊ธฐ๋ฅ | ์ค๋ช | ์ธํฐํ์ด์ค | ์์ ๋ฉ์๋ |
---|---|---|---|
๋ ๊ธฐ | ํ๋์ ๋ ์ ์์ | Flyable |
void fly(); |
์๋ฆฌ ๋ด๊ธฐ | ์ง์ ๊ท (์งน์งน~) | Soundable |
void sound(); |
๊ฑท๊ธฐ | ๋ ์์ ๊ฑธ์ด ๋ค๋ | Walkable |
void walk(); |
๋จน๊ธฐ | ๋จน์ด๋ฅผ ๋จน์ ์ ์์ | Eatable |
void eat(); |
โ
๋ฐ์ดํฐ ๋ณดํธ: ์ค์ํ ๋ฐ์ดํฐ๊ฐ ์ธ๋ถ์์ ์์๋ก ๋ณ๊ฒฝ๋๋ ๊ฒ์ ๋ฐฉ์ง
โ
์ ์ง๋ณด์์ฉ์ด: ๊ฐ์ฒด ๋ด๋ถ ๋ก์ง์ด ๋ณ๊ฒฝ๋๋๋ผ๋ ์ธ๋ถ์ ์ํฅ์ ์ฃผ์ง ์์
โ
์ผ๊ด์ฑ ์ ์ง: ๋ฌด๋ถ๋ณํ ๋ฐ์ดํฐ ์์ ๋ฐฉ์ง
public class Person { // โ
์ธ๋ถ์์ ์ ๊ทผ ๋ถ๊ฐ
public String name; // โ
์ธ๋ถ์์ ์ ๊ทผ ๋ถ๊ฐ
private String secret; // โ ์ธ๋ถ์์ ์ ๊ทผ ๋ถ๊ฐ
public Person() {} // โ
์ธ๋ถ์์ ์ ๊ทผ ๋ถ๊ฐ
public void methodA() {} // โ
์ธ๋ถ์์ ์ ๊ทผ ๊ฐ๋ฅ
private void methodB() {} // โ ์ธ๋ถ์์ ์ ๊ทผ ๋ถ๊ฐ
Person person = new Person(); // โ
์ ๊ทผ๊ฐ๋ฅ ์์ฑ์๊ฐ public
person.name; // โ
์ ๊ทผ๊ฐ๋ฅ ๋ณ์๊ฐ public
person.secret; // โ ์ ๊ทผ๋ถ๊ฐ๋ฅ ๋ณ์๊ฐ private
person.methodA(); // โ
์ ๊ทผ๊ฐ๋ฅ ๋ฉ์๋๊ฐ public
person.methodB(); // โ ์ ๊ทผ๋ถ๊ฐ๋ฅ ๋ฉ์๋๊ฐ private
์ ๊ทผ์ ์ด์ | ํด๋์ค ๋ด๋ถ | ๊ฐ์ ํจํค์ง | ์์ ํด๋์ค | ์ ์ฒด ์ ๊ทผ |
---|---|---|---|---|
private |
โ ๊ฐ๋ฅ | โ ๋ถ๊ฐ๋ฅ | โ ๋ถ๊ฐ๋ฅ | โ ๋ถ๊ฐ๋ฅ |
default |
โ ๊ฐ๋ฅ | โ ๊ฐ๋ฅ | โ ๋ถ๊ฐ๋ฅ | โ ๋ถ๊ฐ๋ฅ |
protected |
โ ๊ฐ๋ฅ | โ ๊ฐ๋ฅ | โ ๊ฐ๋ฅ | โ ๋ถ๊ฐ๋ฅ |
public |
โ ๊ฐ๋ฅ | โ ๊ฐ๋ฅ | โ ๊ฐ๋ฅ | โ ๊ฐ๋ฅ |
โ Setter๋ฅผ ์ฌ์ฉํ๋ฉด ์ ๋๋ ๊ฒฝ์ฐ | โ ํด๊ฒฐ ๋ฐฉ๋ฒ |
---|---|
๋ถ๋ณ ๊ฐ์ฒด๋ฅผ ๋ง๋ค ๋ | final ํค์๋๋ฅผ ์ฌ์ฉํ์ฌ ๊ฐ ๋ณ๊ฒฝ์ ๋ง์ |
๊ฐ์ฒด๊ฐ ์์ฑ๋ ๋ ๋ฐ๋์ ํ์ํ ๊ฐ์ด ์์ ๋ | ์์ฑ์๋ฅผ ํตํด ๊ฐ ์ค์ & ์ดํ ๋ณ๊ฒฝ ๋ถ๊ฐ |
๊ฐ์ด ๋ณ๊ฒฝ๋๋ฉด ํ๋ก๊ทธ๋จ ํ๋ฆ์ด ๋ฌ๋ผ์ง ๋ | ์ ํจ์ฑ ๊ฒ์ฌ๋ฅผ ํฌํจํ ๋ฉ์๋(deposit() ๋ฑ) ์ฌ์ฉ |
public class BankAccount {
private int balance; // ๊ณ์ข ์์ก
public BankAccount(int balance) { // ์ด๊ธฐ ์์ก ์ค์
this.balance = balance;
}
public int getBalance() {
return balance;
}
// โ
์์ : ์
๊ธ ๋ฉ์๋ (์ ํจ์ฑ ๊ฒ์ฌ ์ถ๊ฐ)
public void deposit(int amount) {
if (amount > 0) {
balance += amount;
}
}
// โ ์๋ชป๋ Setter (์์ก์ ๋ง์๋๋ก ๋ณ๊ฒฝํ ์ ์์ โ ์ ๊ฑฐ!)
// public void setBalance(int balance) {
// this.balance = balance;
// }
}
public class Person {
private String secret;
public String getSecret() {
return this.secret; // โ
๊ฐ์ฒด์ secret ์์ฑ ๋ฐํ
}
}
public class Main {
public static void main(String[] args) {
Person p1 = new Person();
p1.secret; // โ ์ง์ ์ ๊ทผ ๋ถ๊ฐ๋ฅ
String newSecret = p1.getSecret(); // โ
๊ฒํฐ๋ฅผ ํ์ฉํด ์ ๊ทผ๊ฐ๋ฅ
}
}
- ๊ฐ์ฒด์ ๋ฐ์ดํฐ๋ฅผ ์ธ๋ถ์์ ๋ง ๋ณ๊ฒฝํ์ง ๋ชปํ๊ฒ ๋ณดํธํ๊ธฐ ์ํด!
- ์ง์ ๊ฐ์ ๋ฐ๊พธ๋ฉด ์ค์ํ ์๋ ์์ผ๋๊น, Setter์์ "์ ํจ์ฑ ๊ฒ์ฌ" ๋ฅผ ํ ์ ์์!
= ์ฆ ๋ฐ์ดํฐ ๋ณดํธ + ์กฐ์ ์!!
โ๏ธ Getter (getX()) โ ๋ณ์๋ฅผ ์ฝ๋ ํจ์
โ๏ธ Setter (setX()) โ ๋ณ์๋ฅผ ๋ณ๊ฒฝํ๋ ํจ์๐ ์์: "๋์ฅ๊ณ ์์ ์ฐ์ ๊บผ๋ด๊ธฐ"
Getter = ์ฐ์ ๊ฐ ์ผ๋ง๋ ๋จ์๋์ง ๋ณด๊ธฐ
Setter = ์ฐ์ ๋ฅผ ์๋ก ์ฌ์ ์ฑ์ฐ๊ธฐ
๊ธฐ๋ฅ | Getter (getX() ) |
Setter (setX() ) |
---|---|---|
์ญํ | ๋ณ์๋ฅผ ์ฝ์ ๋ ์ฌ์ฉ | ๋ณ์๋ฅผ ๋ณ๊ฒฝํ ๋ ์ฌ์ฉ |
์ ๊ทผ | ์ธ๋ถ์์ ์ฝ๊ธฐ ๊ฐ๋ฅ | ์ธ๋ถ์์ ๋ณ๊ฒฝ ๊ฐ๋ฅ |
์ ํจ์ฑ ๊ฒ์ฌ | ์์ | ์ถ๊ฐ ๊ฐ๋ฅ (์๋ชป๋ ๊ฐ ๊ฑฐ๋ถ ๊ฐ๋ฅ) |
ํ์ฉ ์์ | getName() , getAge() |
setName() , setAge() |
class Person {
private String name; // โ
private โ ์ง์ ์ ๊ทผ โ
// โ
Getter (๊ฐ ์ฝ๊ธฐ)
public String getName() {
return name;
}
// โ
Setter (๊ฐ ๋ณ๊ฒฝ)
public void setName(String newName) {
this.name = newName;
}
}
public class Main {
public static void main(String[] args) {
Person person = new Person();
person.setName("์ง์ฐ"); // ์ด๋ฆ ์ค์ (Setter ์ฌ์ฉ)
System.out.println("์ด๋ฆ: " + person.getName()); // ์ถ๋ ฅ: ์ด๋ฆ: ์ง์ฐ
}
}
โ๏ธ Getter (getName()) ์ ์ฌ์ฉํด name ๊ฐ์ ์ฝ์ ์ ์์
โ๏ธ Setter (setName()) ์ ์ฌ์ฉํด name ๊ฐ์ ๋ณ๊ฒฝํ ์ ์์
2๏ธโฃ Setter์์ ์ ํจ์ฑ ๊ฒ์ฌ(์๋ชป๋ ๊ฐ ๋ฐฉ์งํ๊ธฐ์ํจ)
โ ๋์ด๋ฅผ ์์๋ก ์ค์ ํ ์ ์๋๋ก ๋ณดํธํ๊ธฐ!โ
class Person {
private int age;
// โ
Getter (๋์ด ์กฐํ)
public int getAge() {
return age;
}
// โ
Setter (๋์ด ๋ณ๊ฒฝ)
public void setAge(int newAge) {
if (newAge >= 0) { // ๐ด 0 ์ด์๋ง ๊ฐ๋ฅํ๋๋ก ์ค์
this.age = newAge;
} else {
System.out.println("โ ๋์ด๋ 0 ์ด์์ด์ด์ผ ํฉ๋๋ค!");
}
}
}
public class Main {
public static void main(String[] args) {
Person person = new Person();
person.setAge(25); // โ
์ ์์ ์ธ ๊ฐ ์
๋ ฅ
System.out.println("๋์ด: " + person.getAge()); // ์ถ๋ ฅ: ๋์ด: 25
person.setAge(-5); // โ ์๋ชป๋ ๊ฐ ์
๋ ฅ โ ๊ฒฝ๊ณ ๋ฉ์์ง ์ถ๋ ฅ
}
}
โ
์ถ๋ ฅ๊ฐ
๋์ด: 25
๋์ด๋ 0 ์ด์์ด์ด์ผ ํฉ๋๋ค! //โ ์ธํฐ์์ ๊ฐ์ด ์ด์ํ๋ฉด ๊ฑฐ๋ถํ๋๋ก ์ค์ ๊ฐ๋ฅ!
3๏ธโฃ Getter๋ง ์ ๊ณตํ ๊ฒฝ์ฐ (์ฝ๊ธฐ์ ์ฉ๋ณ์/๋ณด๊ธฐ๋งํ์
-_-)
โ๏ธ ํ ๋ฒ ์ ํด์ง๋ฉด ๋ณ๊ฒฝํ ์ ์๋ ๋ฐ์ดํฐ๋ Setter ์์ด Getter๋ง ์ ๊ณต!
class User {
private final String id; // โ
ID๋ ๋ณ๊ฒฝ ๋ถ๊ฐ๋ฅ
public User(String id) { // โ
์์ฑ์๋ก ID ์ค์
this.id = id;
}
// โ
Getter๋ง ์ ๊ณต (Setter ์์)
public String getId() {
return id;
}
}
public class Main {
public static void main(String[] args) {
User user = new User("user123");
System.out.println("์ฌ์ฉ์ ID: " + user.getId()); // ์ถ๋ ฅ: ์ฌ์ฉ์ ID: user123
// โ user.setId("newID"); โ ์ปดํ์ผ ์๋ฌ ๋ฐ์!
}
}
โ
์ถ๋ ฅ๊ฐ
์ฌ์ฉ์ ID: user123
๊ณตํต๋ ๊ธฐ๋ฅ์ด๋ ์์ฑ์ ์์ ํด๋์ค๋ค์๊ฒ ์ ๊ณตํ๊ณ ์ถ์ ๋ ์ฌ์ฉํจ
๋ถ๋ชจ ํด๋์ค์์ ์ฌ์ฌ์ฉํ ์ ์๋ ๋ฉค๋ฒ ๋ณ์๋ ๋ฉ์๋๋ฅผ ์ ์
์์ ํด๋์ค๋ค์ด ์์๋ฐ์ ์ฌ์ฌ์ฉํ๋ ๋ฐฉ์์ผ๋ก ๊ธฐ์ตํ๋ฉดํ๊ธฐ. ์คํค์ง์ฐ?
= ์ค๋ณต์ ์ค์ด๊ณ ๋ณ๊ฒฝ์ฌํญ์ ๋ถ๋ชจํด๋์ค๋ง ์์ ํ๋ฉด ์์ ํด๋์ค์๋ ์๋์ผ๋ก ์ ์ฉ๋๋ฏ๋ก ์ ์ง๋ณด์๊ฐ ์ฌ์์ง์์๋คํจ
// 1๏ธโฃ ๋ถ๋ชจ ํด๋์ค
public class Parent {
public String familyName = "์คํ๋ฅดํ";
public int honor = 10;
public void introduceFamily() {
System.out.println("์ฐ๋ฆฌ " + this.familyName + " ๊ฐ๋ฌธ์ ๋๋๋ก ๋ช
์ฑ์ ์ด์ด์จ...");
}
}
// 2๏ธโฃ ์์ ํด๋์ค (์์)
class Child extends Parent { // โ
extends ํค์๋ ํ์ฉ
}
3๏ธโฃ Main ํด๋์ค (์คํ ํด๋์ค)
public class Main {
public static void main(String[] args) {
// ์์ ํด๋์ค ๊ฐ์ฒด ์์ฑ
Child child = new Child(); // Child ์์ฑ์ ํธ์ถ
System.out.println(child.honor); // โ
๋ถ๋ชจ ์์ฑ ์ฌ์ฉ
child.introduceFamily(); // โ
๋ถ๋ชจ ๋ฉ์๋ ์ฌ์ฉ
}
}
โ
์ถ๋ ฅ๊ฐ
๋ถ๋ชจ ํด๋์ค ์์ฑ์ ํธ์ถ!
์์ ํด๋์ค ์์ฑ์ ํธ์ถ!
์ฐ๋ฆฌ ๊ฐ๋ฌธ์ ์ด๋ฆ์ ๊น
์๋ ๊ฐ๋ฌธ์ ์ด๋ฆ์ ์คํ๋ฅดํ
โ๏ธ extends ์์ ํด๋์ค์์ ๋ถ๋ชจ ํด๋์ค๋ฅผ ์์๋ฐ์ ๋ ์ฌ์ฉ
โ๏ธ super() ์์ ํด๋์ค์ ์์ฑ์์์ ๋ถ๋ชจ ํด๋์ค์ ์์ฑ์๋ฅผ ํธ์ถ( ์๋ต ๊ฐ๋ฅํ์ง๋ง ๋ช
์์ ์ผ๋ก ํธ์ถํ๋ฉด ๋ถ๋ชจ๊ฐ ๋จผ์ ์คํ๋๋คํจ/์ฐธ๊ณ )
โ๏ธ this ์์ ํด๋์ค ์์ ์ ๋ณ์๋ฅผ ์ฐธ์กฐํ ๋ ์ฌ์ฉ, ์์ ์ ๊ฐ๋ฅดํด
โ๏ธ super ๋ถ๋ชจ ํด๋์ค์ ๋ณ์๋ฅผ ์ฐธ์กฐํ ๋ ์ฌ์ฉ
1๏ธโฃ ๋ถ๋ชจ ํด๋์ค
class Parent {
// ๋ถ๋ชจ ํด๋์ค์์ ๋ฌธ์์ด ๋ณ์ ์ ์
String familyName = "์คํ๋ฅดํ"; // ๋ฌธ์์ด ๋ณ์
int age = 50; // ์ซ์ ๋ณ์ ์ ์
boolean isActive = true; // ๋ถ๋ชจ ํด๋์ค์์ ๋ถ๋ฆฐ ๋ณ์
}
class Parent {
String familyName = "์คํ๋ฅดํ"; // ๋ถ๋ชจ ํด๋์ค์ ๋ณ์
int age = 50; // ๋ถ๋ชจ ํด๋์ค์ ๋ณ์
}
2๏ธโฃ ์์ ํด๋์ค (์์)
class Child extends Parent { // ๋ถ๋ชจ ํด๋์ค ์์
public void showInfo() {
// ์์ ํด๋์ค์์ ๋ถ๋ชจ ํด๋์ค์ ๋ณ์ ์ฌ์ฉ
System.out.println("์ฐ๋ฆฌ ๊ฐ๋ฌธ์ ์ด๋ฆ์ " + familyName); // ๋ถ๋ชจ ํด๋์ค์ familyName ์ฌ์ฉ
System.out.println("๋ถ๋ชจ์ ๋์ด๋ " + age); // ๋ถ๋ชจ ํด๋์ค์ age ์ฌ์ฉ
}
}
3๏ธโฃ Main ํด๋์ค (์คํ ํด๋์ค)
public class Main {
public static void main(String[] args) {
Child child = new Child();
child.showInfo(); // ์์ ํด๋์ค์์ ๋ถ๋ชจ ํด๋์ค์ ๋ณ์ ์ถ๋ ฅ
}
}
โ
์ถ๋ ฅ ๊ฐ
๋ถ๋ชจ์ ๋์ด๋ 50
ํต์ฌ ๐ซ
this๋ ์์ ํด๋์ค์ ๋ฉค๋ฒ๋ฅผ, super๋ ๋ถ๋ชจ ํด๋์ค์ ๋ฉค๋ฒ๋ฅผ ๋ช ํํ๊ฒ ์ฐธ์กฐํ ๋ ์ฌ์ฉํ์! ์์์ด? ๋ฐ์งใ ใ ใด!???
class Child {
String name = "์์"; // โ
์์ ํด๋์ค์ ๋ณ์
public void printName() {
System.out.println("์์ ํด๋์ค์์ ํธ์ถ: " + this.name); // โ
this. ์์ ํด๋์ค ๋ณ์ โญ๏ธ
}
}
class Parent {
String name = "๋ถ๋ชจ"; // โ
๋ถ๋ชจ ํด๋์ค์ ๋ณ์
}
class Child extends Parent {
String name = "์์"; // โ
์์ ํด๋์ค์ ๋ณ์
public void printName() {
System.out.println("๋ถ๋ชจ ํด๋์ค์์ ํธ์ถ: " + super.name); // โ
super. ๋ถ๋ชจ ํด๋์ค ๋ณ์ โญ๏ธ
}
}
ํต์ฌ ๐ซ
super()๋ ๋ถ๋ชจ ํด๋์ค์ ์์ฑ์๋ฅผ ํธ์ถ, this()๋ ์์ ํด๋์ค ๋ด์์ ๋ค๋ฅธ ์์ฑ์๋ฅผ ํธ์ถํ ๋ ์ฌ์ฉํจ
//๋ถ๋ชจํด๋์ค
class Child {
Child() {
this("๊ธฐ๋ณธ ์ด๋ฆ"); // โ
this() ๋ค๋ฅธ ์์ฑ์ ํธ์ถ โญ๏ธ
System.out.println("์์ ํด๋์ค ๊ธฐ๋ณธ ์์ฑ์ ํธ์ถ");
}
Child(String name) {
System.out.println(name + "์ผ๋ก ์์ ํด๋์ค ์์ฑ");
}
}
//๋ฉ์ธ ์คํํด๋์ค
public class Main {
public static void main(String[] args) {
Child child = new Child(); // ์ฒซ ๋ฒ์งธ ์์ฑ์๊ฐ ํธ์ถ๋๋ฉด์ ๋ ๋ฒ์งธ ์์ฑ์ ํธ์ถ
}
}
//๋ถ๋ชจํด๋์ค
class Parent {
Parent() {
System.out.println("๋ถ๋ชจ ํด๋์ค ์์ฑ์");
}
}
//๋ฉ์ธ์คํํด๋์ค
class Child extends Parent {
Child() {
super(); // โ
๋ถ๋ชจ ํด๋์ค ์์ฑ์ ํธ์ถ โญ๏ธ
System.out.println("์์ ํด๋์ค ์์ฑ์");
}
}
// 1๏ธโฃ Parent ํด๋์ค (๋ถ๋ชจ ํด๋์ค)
class Parent {
String name = "๋ถ๋ชจ"; // โ
๋ถ๋ชจ ํด๋์ค์ ๋ณ์
}
// 2๏ธโฃChild ํด๋์ค (์์ ํด๋์ค)
class Child extends Parent {
String name = "์์"; // โ
์์ ํด๋์ค์ ๋ณ์
public void printName() { โ
printName() ๋งค์๋ ์ ์
System.out.println("๋ถ๋ชจ์ ์ด๋ฆ: " + super.name); // ๋ถ๋ชจ ํด๋์ค์ ๋ณ์
System.out.println("์์์ ์ด๋ฆ: " + this.name); // ์์ ํด๋์ค์ ๋ณ์
}
}
// 3๏ธโฃ Main ํด๋์ค (์คํ ํด๋์ค)
public class Main {
public static void main(String[] args) {
Child child = new Child(); // โ
์์ ํด๋์ค ๊ฐ์ฒด ์์ฑ
child.printName(); // โ
printName ๋ฉ์๋ ํธ์ถ
}
}
๐ก ๋ถ๋ชจ ํด๋์ค์์ ์ ์๋ ๋ฉ์๋๋ฅผ ์์ ํด๋์ค์์ ๋ค๋ฅด๊ฒ ๊ตฌํํ๋๊ฒ
1. @Override ์ด๋ ธํ ์ด์ ์ ์ฌ์ฉํ๋ฉด ๋ถ๋ชจ ํด๋์ค์ ๋ฉ์๋๊ฐ ์์ผ๋ฉด ์ปดํ์ผ๋ฌ๊ฐ ์๋ ค์ฃผ๊ธฐ ๋๋ฌธ์ ์ค์๋ฅผ ๋ฐฉ์งํ ์ ์๋ค.
2. ๋ฉ์๋ ์ด๋ฆ, ๋งค๊ฐ๋ณ์, ๋ฐํ ํ์ ์ ๋ถ๋ชจ ํด๋์ค์ ๋ฉ์๋์ ์์ ํ ๋์ผํด์ผํจ
// ๋ถ๋ชจ ํด๋์ค
class Animal {
void makeSound() {
System.out.println("๋๋ฌผ์ด ์๋ฆฌ๋ฅผ ๋ธ๋ค.");
}
}
// ์์ ํด๋์ค Dog
class Dog extends Animal {
@Override // ๋ถ๋ชจ ํด๋์ค์ ๋ฉ์๋๋ฅผ ์ค๋ฒ๋ผ์ด๋ฉ
void makeSound() {
System.out.println("๋ฉ๋ฉ!");
}
}
// ์์ ํด๋์ค Cat
class Cat extends Animal {
@Override // ๋ถ๋ชจ ํด๋์ค์ ๋ฉ์๋๋ฅผ ์ค๋ฒ๋ผ์ด๋ฉ
void makeSound() {
System.out.println("์ผ์น!");
}
}
//๋ฉ์ธ ์คํ ํด๋์ค
public class Main {
public static void main(String[] args) {
// Animal ํ์
๋ณ์๋ก ๊ฐ์ฒด ์์ฑ
Animal myDog = new Dog(); // Dog ๊ฐ์ฒด
Animal myCat = new Cat(); // Cat ๊ฐ์ฒด
myDog.makeSound(); // "๋ฉ๋ฉ!"
myCat.makeSound(); // "์ผ์น!"
โ
์ถ๋ ฅ ๊ฐ
"๋ฉ๋ฉ!"
"์ผ์น!"
}
}
๐ก์ถ์ ๋ฉ์๋๋ ์ ์ธ๋ง ํ๊ณ ๊ตฌํ๋ถ {}๋ ์์ฑํ์ง์๋๋ค!
void makeSound(); โ ์ฌ๊ธฐ๊น์ง๋ง ์ ๋ ฅํ๋ ๋๋
// 1๏ธโฃ ์ถ์ ํด๋์ค
abstract class Animal {
// ์ถ์ ๋ฉ์๋ (์์ ํด๋์ค์์ ๊ตฌํํด์ผ ํจ)
abstract void makeSound();
}
// 2๏ธโฃ ์์ ํด๋์ค
class Dog extends Animal {
@Override
void makeSound() {
System.out.println("๋ฉ๋ฉ!");
}
}
3๏ธโฃ Main ํด๋์ค (์คํ ํด๋์ค)
public class Main {
public static void main(String[] args) {
Animal dog = new Dog();
dog.makeSound(); // "๋ฉ๋ฉ!" ์ถ๋ ฅ
}
}
๊ฐ์๊ฒ๊ฐ์ง๋ง ๋ค๋ฅธ,,๋,,
ํน์ฑ | ์ถ์ ํด๋์ค (Abstract Class) | ์ธํฐํ์ด์ค (Interface) |
---|---|---|
์ธ์คํด์ค ๋ณ์ | O (๋ฉค๋ฒ ๋ณ์ ์ ์ธ ๊ฐ๋ฅ) | X (๋ฉค๋ฒ ๋ณ์ ์ ์ธ ๋ถ๊ฐ๋ฅ) |
๋ฉ์๋ ๊ตฌํ | O (์ผ๋ฐ ๋ฉ์๋ + ์ถ์ ๋ฉ์๋) | X (๊ธฐ๋ณธ์ ์ผ๋ก ๋ชจ๋ ๋ฉ์๋๋ ์ถ์ ๋ฉ์๋) |
๋ค์ค ์์ | X (ํ๋๋ง ์์ ๊ฐ๋ฅ) | O (์ฌ๋ฌ ๊ฐ ๊ตฌํ ๊ฐ๋ฅ) |
์ฌ์ฉ ๋ชฉ์ | ๊ณ์ธต ๊ตฌ์กฐ ํํ (๊ณตํต ์์ฑ, ๊ธฐ๋ฅ ์ฌ์ฌ์ฉ) | ๊ณตํต๋ ๊ธฐ๋ฅ์ ์ ์ (ํ์ค ์ ๊ณต) |
์์ฑ์ ์ฌ์ฉ | O (์์ฑ์ ์ ์ธ ๊ฐ๋ฅ) | X (์์ฑ์ ์ ์ธ ๋ถ๊ฐ๋ฅ) |
ํค์๋ | abstract ํค์๋ ์ฌ์ฉ |
interface ํค์๋ ์ฌ์ฉ |
์ ๊ทผ ์ ์ด์ | O (public, protected, private ์ฌ์ฉ ๊ฐ๋ฅ) | X (๋ชจ๋ ๋ฉ์๋๋ ๊ธฐ๋ณธ์ ์ผ๋ก public) |
โ๏ธ ์ถ์ ํด๋์ค๋ ๋ถ๋ชจ-์์ ๊ด๊ณ๋ฅผ ๋ง๋ค๊ณ ๊ณตํต ์์ฑ๊ณผ ๊ธฐ๋ฅ์ ๋ฌผ๋ ค์ฃผ๊ธฐ ์ํด ์ฌ์ฉ
โ๏ธ ์ธํฐํ์ด์ค๋ ๋ค์ค ๊ตฌํ์ด ๊ฐ๋ฅํ๋ฉฐ ์ฌ๋ฌ ํด๋์ค์์ ๋์ผํ ๊ธฐ๋ฅ์ ๊ฐ์ ํ ๋ ์ฌ์ฉ
๊ฐ๋ | ์ค๋ช |
---|---|
์ถ์ํ(Abstraction) | ๋ถํ์ํ ์ธ๋ถ ๊ตฌํ์ ์จ๊ธฐ๊ณ ํต์ฌ์ ์ธ ๋ถ๋ถ๋ง ๋ ธ์ถํ๋ ๊ฐ๋ |
์ถ์ ํด๋์ค(Abstract Class) | abstract ํค์๋๋ฅผ ์ฌ์ฉํ์ฌ ๊ณตํต ๊ธฐ๋ฅ์ ์ ์ํ๊ณ , ์ผ๋ถ ๋ฉ์๋๋ฅผ ์์ ํด๋์ค์์ ๊ตฌํํ๋๋ก ๊ฐ์ ํ๋ ํด๋์ค |
์ธํฐํ์ด์ค(Interface) | ๋ชจ๋ ๋ฉ์๋๊ฐ ์ถ์ ๋ฉ์๋๋ก๋ง ์ด๋ฃจ์ด์ง ๊ตฌ์กฐ. ์ฌ๋ฌ ํด๋์ค๋ฅผ ํ์คํํ๊ธฐ ์ํด ์ฌ์ฉ |
์ถ์ํ ๊ณ์ธต | ํด๋์ค ๋๋ ์ธํฐํ์ด์ค๋ฅผ ์ฌ์ฉํ์ฌ ์์ ๊ฐ๋ ์์ ํ์ ๊ฐ๋ ์ ์ค๊ณํ๋ ๊ณ์ธต ๊ตฌ์กฐ |
// 1๏ธโฃ ์ธํฐํ์ด์ค ์ ์ (์ค๊ณ)
interface Animal {
void makeSound(); // โ
์ถ์ ๋ฉ์๋ interface ํ์ฉ ๊ตฌํ ๊ฐ์
}
// 2๏ธโฃ ์ธํฐํ์ด์ค ๊ตฌํ (๊ฐ ํด๋์ค๋ง๋ค ๋๋ฌผ ๋ค๋ฅด๊ฒ ๊ตฌํ)
class Dog implements Animal {
@Override
public void makeSound() {
System.out.println("๋ฉ๋ฉ! ๐ถ");
}
}
class Cat implements Animal {
@Override
public void makeSound() {
System.out.println("์ผ์น! ๐ฑ");
}
}
// 3๏ธโฃ Main ํด๋์ค (์คํ ํด๋์ค)
public class Main {
public static void main(String[] args) {
Animal myDog = new Dog();
Animal myCat = new Cat();
myDog.makeSound();
myCat.makeSound();
}
}
โ
์ถ๋ ฅ ๊ฐ
๋ฉ๋ฉ! ๐ถ
์ผ์น! ๐ฑ
// 1๏ธโฃ ์ถ์ ํด๋์ค ์ ์ (์ค๊ณ)
//๊ฐ ์ฐจ๋๋ง๋ค ๋ค๋ฅด๊ฒ ๊ตฌํํด์ผ ํ ์ถ์ ๋ฉ์๋
abstract class Vehicle {
abstract void move(); // โ
์ถ์ ๋ฉ์๋ (๊ตฌํ ๊ฐ์ )
void stop() { // โ
๊ณตํต ๊ธฐ๋ฅ ์ ๊ณต ๋ฉ์๋
System.out.println(" ์ฐจ๋์ด ๋ฉ์ท์ต๋๋ค.");
}
}
// 2๏ธโฃ ์ถ์ ํด๋์ค ์์ (๊ฐ ์ฐจ๋๋ง๋ค ๋ค๋ฅด๊ฒ ๊ตฌํ)
class Car extends Vehicle {
@Override
void move() {
System.out.println("๐ ์๋์ฐจ๊ฐ ๋๋ก๋ฅผ ๋ฌ๋ฆฝ๋๋ค.");
}
}
class Airplane extends Vehicle {
@Override
void move() {
System.out.println("โ๏ธ ๋นํ๊ธฐ๊ฐ ํ๋์ ๋ฉ๋๋ค.");
}
}
// 3๏ธโฃ Main ํด๋์ค (์คํ ํด๋์ค)
public class Main {
public static void main(String[] args) {
Vehicle myCar = new Car();
Vehicle myPlane = new Airplane();
myCar.move(); // ์ถ๋ ฅ: ๐ ์๋์ฐจ๊ฐ ๋๋ก๋ฅผ ๋ฌ๋ฆฝ๋๋ค.
myPlane.move(); // ์ถ๋ ฅ: โ๏ธ ๋นํ๊ธฐ๊ฐ ํ๋์ ๋ฉ๋๋ค.
myCar.stop(); // ์ถ๋ ฅ: ์ฐจ๋์ด ๋ฉ์ท์ต๋๋ค.
}
}
โ
์ถ์ ํด๋์ค๋ฅผ ํ์ฉํ๋ฉด Vehicle์ด๋ผ๋ ๊ณตํต ๊ธฐ๋ฅ(stop)์ ์ ์งํ๋ฉด์
โ
move() ๋ฉ์๋๋ ๊ฐ ํด๋์ค์์ ๋ค๋ฅด๊ฒ ๊ตฌํํ ์ ์์์ ์์์๋ค!
= ์ฆ ๊ณตํต๊ธฐ๋ฅ ๊ตฌํ!
๐ก ์ถ์ ํด๋์ค vs ์ธํฐํ์ด์ค ์ฐจ์ด์
- ์ถ์ํ๋ ๋ถํ์ํ ์ ๋ณด๋ฅผ ์จ๊ธฐ๊ณ ์ค์ํ ์์๋ง ๋ ธ์ถํ๋ ๊ฒ
- ์ธํฐํ์ด์ค๋ ํ์ค์ ์ ์ํ๊ณ , ์ฌ๋ฌ ํด๋์ค๊ฐ ๋์ผํ ๊ท์น์ ๋ฐ๋ฅด๋๋ก ๊ฐ์
- ์ถ์ ํด๋์ค๋ ๊ณตํต ๊ธฐ๋ฅ์ ์ ๊ณตํ๋ฉด์ ์ผ๋ถ ๊ธฐ๋ฅ์ ์์ ํด๋์ค์์ ๊ตฌํํ๋๋ก ๊ฐ์ ํ ์์์
- ์ํฉ์ ๋ฐ๋ผ ์ถ์ ํด๋์ค์ ์ธํฐํ์ด์ค๋ฅผ ์ ์ ํ ํ์ฉํ์ฌ ์ ์ง๋ณด์์ฑ์ ๋์ด๊ธฐ
๋น๊ต ํญ๋ชฉ ์ถ์ ํด๋์ค ์ธํฐํ์ด์ค ์ ์ธํค์๋ abstract class interface ๋ฉ์๋ ๊ตฌ์ฑ ์ผ๋ฐ ๋ฉ์๋ + ์ถ์ ๋ฉ์๋ ๊ฐ๋ฅ ๋ชจ๋ ๋ฉ์๋๊ฐ ์ถ์ ๋ฉ์๋ ๋ณ์ ๊ตฌ์ฑ ์ผ๋ฐ ๋ณ์ ์ ์ธ ๊ฐ๋ฅ ๋ชจ๋ ๋ณ์๋ public static final (์์) ์์ ๋ฐฉ์ extends ํค์๋๋ฅผ ์ฌ์ฉํด 1๊ฐ๋ง ์์ ๊ฐ๋ฅ implements๋ฅผ ์ฌ์ฉํด ๋ค์ค ๊ตฌํ ๊ฐ๋ฅ ์ฌ์ฉ ๋ชฉ์ ๊ณตํต ๊ธฐ๋ฅ์ ์ ๊ณตํ๋ฉด์ ์ผ๋ถ ๊ธฐ๋ฅ์ ๊ฐ์ ํ์ค(๊ท๊ฒฉ)์ ์ ์ํ์ฌ ์ฌ๋ฌ ํด๋์ค์์ ๊ตฌํ
// 1๏ธโฃ ์ธํฐํ์ด์ค ์ ์ (์ค๊ณ)
interface Animal { โ
interface ํ์ฉ ๊ตฌํ ๊ฐ์
void makeSound(); // ๋๋ฌผ๋ง๋ค ์๋ฆฌ๋ฅผ ๋
void exist(); // ๋๋ฌผ์ด ์กด์ฌํ๋ค
}
// 2๏ธโฃ ์ธํฐํ์ด์ค ๊ตฌํ (๊ฐ ํด๋์ค๋ง๋ค ๋๋ฌผ ๋ค๋ฅด๊ฒ ๊ตฌํ)
// Dog ํด๋์ค
class Dog implements Animal {
@Override
public void makeSound() {
System.out.println("๋ฉ๋ฉ!");
}
@Override
public void exist() {
System.out.println("๋๋ ๊ฐ์
๋๋ค.");
}
}
// Cat ํด๋์ค
class Cat implements Animal {
@Override
public void makeSound() {
System.out.println("์ผ์น!");
}
@Override
public void exist() {
System.out.println("๋๋ ๊ณ ์์ด์
๋๋ค.");
}
}
3๏ธโฃ Main ํด๋์ค (์คํ ํด๋์ค)
public class Main {
public static void main(String[] args) {
Animal animal = new Dog(); // โ
๊ฐ์ฒด ์์ฑ!
animal.makeSound();
animal.exist();
animal = new Cat(); // โ
์ฌ ํ ๋น
animal.makeSound();
animal.exist();
โ
์ถ๋ ฅ ๊ฐ
๋ฉ๋ฉ!
๋๋ ๊ฐ์
๋๋ค.
์ผ์น!
๋๋ ๊ณ ์์ด์
๋๋ค.
โ๏ธ Animal animal = new Dog();๋ก Dog ๊ฐ์ฒด๋ฅผ ํ ๋นํ ํ
animal = new Cat();๋ก ์ฌํ ๋นํ๊ฑฐ์ ๊ทธ๋์ ์๋ฌธ์์
1๏ธโฃ ์ธํฐํ์ด์ค ์ ์ (์ค๊ณ)
interface Animal { โ
interface ํ์ฉ ๊ตฌํ ๊ฐ์
void makeSound(); // Animal ์ธํฐํ์ด์ค
}
2๏ธโฃ ์ธํฐํ์ด์ค ๊ตฌํ
class Dog implements Animal {
@Override
public void makeSound() {
System.out.println("๋ฉ๋ฉ!");
}
public void fetch() {
System.out.println("๊ณต์ ๋ฌผ์ด์ต๋๋ค.");
}
}
3๏ธโฃ Main ํด๋์ค (์คํ ํด๋์ค)
public class Main {
public static void main(String[] args) {
Dog dog = new Dog(); // โ
์๋ ํ ๋ณํ
// 1. Dog ๊ฐ์ฒด๋ฅผ Animal ํ์
์ผ๋ก ์
์บ์คํ
Animal animal = dog;
animal.makeSound(); // โ
Animal ํ์
์์ ์ ์๋ ๋ฉ์๋๋ง ์ฌ์ฉ ๊ฐ๋ฅ
// animal.fetch(); // โ ์ค๋ฅ! Animal ํ์
์์๋ fetch()๋ฅผ ์์ง ๋ชปํจ
}
}
}
}
1๏ธโฃ ์ธํฐํ์ด์ค ์ ์ (์ค๊ณ)
class Animal {
void makeSound() {
System.out.println("์๋ฆฌ");
}
}
2๏ธโฃ ์ธํฐํ์ด์ค ๊ตฌํ
// Dog ํด๋์ค
class Dog extends Animal {
@Override
void makeSound() {
System.out.println("๋ฉ๋ฉ!");
}
void wagTail() {
System.out.println("๊ผฌ๋ฆฌ๋ฅผ ํ๋ ๋ค.");
}
}
// Cat ํด๋์ค
class Cat extends Animal {
@Override
void makeSound() {
System.out.println("์ผ์น!");
}
void scratch() {
System.out.println("๊ธ๋๋ค.");
}
}
3๏ธโฃ Main ํด๋์ค (์คํ ํด๋์ค)
public class Main {
public static void main(String[] args) {
// โ
Animal ํ์
์ผ๋ก Dog ๊ฐ์ฒด๋ฅผ ์์ฑ
Animal animal = new Dog();
// โ
๋ง์ฝ ์์ฑํ๊ฒ Dog ๊ฐ์ฒด๋ผ๋ฉด wagTail()์ ํธ์ถ
if (animal instanceof Dog) {
Dog dog = (Dog) animal; // animal์ Dog ํ์
์ผ๋ก ๋ฐ๊ฟ์ค
dog.wagTail(); // "๊ผฌ๋ฆฌ๋ฅผ ํ๋ ๋ค." ์ถ๋ ฅ
}
// โ
๋ง์ฝ animal์ด Cat ๊ฐ์ฒด๋ผ๋ฉด scratch()์ ํธ์ถ
else if (animal instanceof Cat) {
Cat cat = (Cat) animal; // animal์ Cat ํ์
์ผ๋ก ๋ฐ๊ฟ์ค
cat.scratch(); // "๊ธ๋๋ค." ์ถ๋ ฅ
}
//โ
๋ง์ฝ Dog๋ ์๋๊ณ Cat๋ ์๋๋ผ๋ฉด ์์ํ์ง ๋ชปํ ํ์
์ผ ๊ฒฝ์ฐ ์ถ๋ ฅ
else {
System.out.println("์ ์ ์๋ ๋๋ฌผ์
๋๋ค.");
}
// animal ๊ฐ์ฒด ํธ์ถ
animal.makeSound();
}
}
โ
์ถ๋ ฅ ๊ฐ
๊ผฌ๋ฆฌ๋ฅผ ํ๋ ๋ค.
๋ฉ๋ฉ!
๊ฐ์๊ธด ์ธ๋ค์ผ๊ณผ ๊ณ ์ํ ๋ด์ฉ์ ๊ธ,, ์ ์ตํด์ .แ.แ