일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 국제화
- Menu
- Android
- 오버로딩
- 배열
- 생성자
- 예외처리
- 클래스
- layout
- JSP
- oracle
- OGNL
- JavaScript
- AWT
- Java
- 어노테이션
- 메소드
- mybatis
- 기본
- Graphic
- 전화걸기
- 이클립스
- struts2
- 메서드
- paint
- Eclips
- 에러페이지
- 안드로이드
- HTML
- Spring
- Today
- Total
목록생성자 (5)
note
class MyDate3{//생성자 오버로딩 private int year; private int month; private int day; public MyDate3(){} //밑에 생성자를 만들었기 때문에 위에가 자동적으로 만들어지지 않음 public MyDate3(int new_year, int new_month, int new_day){ year=new_year; month=new_month; day=new_day; } public void print(){ System.out.println(year+ "/" +month+"/"+day); } } public class ConstructorTest05 { public static void main(String[] args){ MyDate3 d= ne..
public class MyClass1 {//MyClass1Test이랑 연결 //메인이 없기에 MyClass1Test랑 연결시킴 //은익화 private String name; //name = null //null = 객체에 주소가 없어 참조 못함 //생성자(오버로딩으로 볼 수 있음) public MyClass1(){} //생성자 public MyClass1(String n){ name = n; } //캡슐화 public void setName(String n){ name=n; } public String getName(){ return name; } } 없음 따로 저장하기 public class MyClass1Test {//MyClass1이랑 연결 public static void main(String..
class MyDate2{//생성자 정의하기 private int year; private int month; private int day; //없어도 됨 (자동으로됨) public MyDate2(){ System.out.println("[생성자] : 객체가 생성될 때 자동 호출됩니다."); year=2011; month=12; day=16; } public void print(){ System.out.println(year + "/" + month + "/" +day); } } public class ConstructorTest02 { public static void main(String[] args){ MyDate2 d = new MyDate2(); d.print(); } } [생성자] : 객체가 ..
class Bank{//은닉화 캡슐화 //은닉화 (금고) private int money; private int card; //캡슐화 어디서든 호출가능하게 하려고 public (은행원) public void setMoney(int m){//데이터를 set하는 함수 set money = m; } public void setCard(int c){ card = c; } public int getMoney(){//데이터를 리턴하는 함수get return money; //setMoney의money를 가져옴 } public int getCard(){ return card; } } public class VariableTest2 { public static void main(String[] args){ Bank b ..
class Variable{//생성자 정의와 호출 private int c = 300; int d = 400; } public class VariableTest { //멤버 변수 //private 는 같은 클래스 영역에서는 출력가능 private int a = 100; private int b = 200; public static void main(String[] args){ VariableTest v = new VariableTest(); System.out.println(v.a); System.out.println(v.b); System.out.println("=================="); Variable v2 = new Variable(); /* System.out.println(v2.c)..