일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- angular2
- Login with OAuth Authentication
- 전체텍스트
- 자바 야구게임
- 야구게임
- 이클립스
- IBatis procedure
- while
- 자바
- 추상클래스
- 전자정부
- 다운캐스팅
- 다형성
- 스프링
- 단축키
- 상속예제
- full text indexing
- 업캐스팅
- Validations
- 형변환
- 상속
- Random
- jquery
- 전체
- 로또
- 25가지 효율적인 sql작성법
- Full text
- 가변인자
- 페이징
Archives
- Today
- Total
nalaolla
오브젝트 예제 1 (import) 본문
728x90
반응형
- package test.com;
- public class Student {
- protected int num;
- protected String name;
- protected String email;
- protected String phone;
- public Student() {
- // TODO Auto-generated constructor stub
- System.out.println(num);
- System.out.println(name);
- System.out.println(email);
- System.out.println(phone);
- this.num = 99;
- this.name = "daniel";
- this.email = "aaa@aaa.net";
- this.phone = "010-1111-2222";
- }
- }
- package test.com;
- import test.student.Student;
- public class StudentMain {
- Student abc = new Student();
- public static void main(String[] args) {
- // TODO Auto-generated method stub
- //import : 다른 패키지의 클래스를 사용할 수 있도록 선언하는것
- //클래스의 경로는 절대경로로 설정할 수 있다.
- // test.student.Student st00 = new test.student.Student();
- //접근제한자 : public > protected > default > private
- Student st01 = new Student();
- test.com.Student s2 = new test.com.Student();
- // System.out.println(st01.num);
- // System.out.println(st01.name);
- // System.out.println(st01.email);
- // System.out.println(st01.phone);
- System.out.println(s2.num);
- System.out.println(s2.name);
- System.out.println(s2.email);
- System.out.println(s2.phone);
- }
- }
728x90
반응형
'JAVA > 5. Object1' 카테고리의 다른 글
오브젝트 예제 6 (기본생성자와 매개변수 생성자를 활용) (0) | 2016.06.22 |
---|---|
오브젝트 예제 5 (클래스를 사용하여 객체를 생성) (0) | 2016.06.22 |
오브젝트 예제 4 (접근제한자) (0) | 2016.06.22 |
오브젝트 예제 3 (오버로딩) (0) | 2016.06.22 |
오브젝트 예제 2 (Class 이해하기) (0) | 2016.06.22 |