일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 다형성
- Login with OAuth Authentication
- jquery
- angular2
- 전체
- while
- Validations
- 자바
- 자바 야구게임
- 업캐스팅
- 전체텍스트
- 형변환
- 추상클래스
- 스프링
- 상속
- 상속예제
- 이클립스
- IBatis procedure
- 25가지 효율적인 sql작성법
- 단축키
- full text indexing
- 가변인자
- 페이징
- 야구게임
- 다운캐스팅
- Full text
- 로또
- Random
- 전자정부
Archives
- Today
- Total
nalaolla
오브젝트 예제 3 (게시판 객체생성 및 출력) 본문
728x90
반응형
- package test.com;
- import java.util.Date;
- public class Test03Board {
- int num;
- String title;
- String content;
- String name;
- Date regDate;
- public Test03Board() {
- num++;
- title = "title";
- content = "content";
- name = "name";
- regDate = new Date();
- }
- public Test03Board(int num, String title, String content, String name) {
- this.num = num;
- this.title = title;
- this.content = content;
- this.name = name;
- this.regDate = new Date();
- }
- }
- package test.com;
- public class Test03BoardMain {
- public static void main(String[] args) {
- // TODO Auto-generated method stub
- System.out.println("Board...");
- //게시판 객체생성 및 출력
- Test03Board b01 = new Test03Board();
- System.out.println(b01.num);
- System.out.println(b01.title);
- System.out.println(b01.content);
- System.out.println(b01.name);
- System.out.println(b01.regDate);
- Test03Board b02 = new Test03Board(0, "title1", "content1", "KIM");
- System.out.println(b02.num);
- System.out.println(b02.title);
- System.out.println(b02.content);
- System.out.println(b02.name);
- System.out.println(b02.regDate);
- }
- }
728x90
반응형
'JAVA > 7. Object3' 카테고리의 다른 글
오브젝트 예제 4 (통합클래스 객체 생성 및 출력) (0) | 2016.06.22 |
---|---|
오브젝트 예제 2 (this : 초기화 코딩을 복제하는 기능) (0) | 2016.06.22 |
오브젝트 예제 1 (객체 생성 및 출력) (0) | 2016.06.22 |