๊ฐ์ฒด ์งํฅ์ ํน์ง์ ๋คํ์ฑ์ ๊ฐ์ง๊ณ ์๋ค.
์กฐ๊ฑด
- ๋์ผํ ํด๋์ค ๋ฐ ์์ ๊ด๊ณ ์ ๋ฐ์ํ๋ค.
- ๋ฉ์๋ ์ด๋ฆ์ด ๋์ผํด์ผ ํ๋ค.
- ๋งค๊ฐ๋ณ์ / ๋ฆฌํดํ์ ์ด ์๋ก ๋ฌ๋ผ์ผ ํ๋ค.
- ex) void test(){}
void test(int name){}
int test(){}
์ค๋ฒ๋ก๋ฉ์ ์ฃผ๋ก ์์ฑ์ ์์ฑ ์ ๋ง์ด ์ผ์ด๋๋ค.
class Student{
String name;
int age;
public Student(){}
public Student(String name){
this.name = name;
}
public Student(int age){
this.age = age;
}
public class Test{
public static void main(String args[]){
//public Student(){} ํธ์ถ
Student s1 = new Student();
//public Student(String name); ํธ์ถ
Studnet s2 = new Student("ํ๊ธธ๋");
}
}
์์ ํด๋์ค์ ๋ฉ์๋์ ์ฝ๊ฐ ๊ธฐ๋ฅ์ ์ถ๊ฐํ๊ฑฐ๋ ๊ฐ์ ์ด๋ฆ์ผ๋ก ์๋ก์ด ๊ธฐ๋ฅ์ ์ ์ํ๋ ๊ฒ
์ค๋ฒ๋ผ์ด๋ฉ ์กฐ๊ฑด
(1) ์์ ํด๋์ค ๋ฉ์๋ ์ด๋ฆ, ์ธ์,๋ฐํํ ์์ ํ ๋์ผ
(2) static, final, private, ๋ฉ์๋์ ๊ฒฝ์ฐ ์ค๋ฒ๋ผ์ด๋ฉ ๋ถ๊ฐ