일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 추상클래스
- 전자정부
- 전체텍스트
- 야구게임
- 자바 야구게임
- while
- 자바
- Login with OAuth Authentication
- 전체
- 다형성
- 이클립스
- 상속예제
- jquery
- 스프링
- 다운캐스팅
- Random
- 단축키
- 페이징
- full text indexing
- Validations
- 업캐스팅
- 형변환
- 상속
- 가변인자
- angular2
- 로또
- 25가지 효율적인 sql작성법
- Full text
- IBatis procedure
Archives
- Today
- Total
nalaolla
오브젝트 예제 4 (접근제한자) 본문
728x90
반응형
- package test.com;
- public class Test03score {
- //접근제한자 선언이 없다 >> default
- //접근범위 public > protected > default : 같은 패키지 안에서만 > private : 동일클래스
- public String name;
- int kor;
- int eng;
- int math;
- int total;
- protected double avg;
- /*private*/ String grade;
- public Test03score() {
- //매개변수 없는 생성자 : 생략가능
- // System.out.println(name);
- // System.out.println(kor);
- // System.out.println(eng);
- // System.out.println(math);
- // System.out.println(total);
- // System.out.println(avg);
- // System.out.println(grade);
- }
- public Test03score(String name, int kor, int eng, int math) {
- //this >> class내부의 전역변수를 가리킴
- this.name = name;
- this.kor = kor;
- this.eng = eng;
- this.math = math;
- total = kor + eng + math;
- avg = (int)((total / 3.0d * 10))/10d;
- if(avg >=90) {
- grade = "A";
- } else if(avg >=80) {
- grade = "B";
- } else if(avg >=70) {
- grade = "C";
- } else if(avg >=60) {
- grade = "D";
- } else {
- grade = "Other";
- }
- }
- } //end class
- package test.com;
- public class Test03scoreMain {
- public static void main(String[] args) {
- System.out.println("score...");
- Test03score score = new Test03score();
- // System.out.println(score.name);
- // System.out.println(score.kor);
- // System.out.println(score.eng);
- // System.out.println(score.math);
- // System.out.println(score.total);
- // System.out.println(score.avg);
- // System.out.println(score.grade);
- System.out.println("=====================");
- // 매개변수가 있는 생성자를 만들고
- // 매개벼수가 있는 생성자로 인자(값)를 전달 후
- // 출력하시오
- // 전달할 인자값(이름:홍길동, 국어:100, 영어:99, 수학:88)
- Test03score score2 = new Test03score("홍길동", 100, 99, 88);
- System.out.println("이름 : " + score2.name);
- System.out.println("국어점수 : " + score2.kor);
- System.out.println("영어점수 : " + score2.eng);
- System.out.println("수학점수 : " + score2.math);
- System.out.println("총점 : " + score2.total);
- System.out.println("평균 : " + score2.avg);
- System.out.println("등급 : " + score2.grade);
- System.out.println("=====================");
- }
- }
728x90
반응형
'JAVA > 5. Object1' 카테고리의 다른 글
오브젝트 예제 6 (기본생성자와 매개변수 생성자를 활용) (0) | 2016.06.22 |
---|---|
오브젝트 예제 5 (클래스를 사용하여 객체를 생성) (0) | 2016.06.22 |
오브젝트 예제 3 (오버로딩) (0) | 2016.06.22 |
오브젝트 예제 2 (Class 이해하기) (0) | 2016.06.22 |
오브젝트 예제 1 (import) (0) | 2016.06.22 |