ex) 정수가 손에 핸드폰을 들고 이스트백을 메고 은행에 들어간다.
객체가 될 수 있는 것: _정수, 핸드폰, 이스트백, 은행_
손 정수
든다 정수
멘다 정수
들어간다 정수
사람 Person(클래스)
속성(맴버변수)
이름 String name "홍길동"
나이 int age 20
동작(맴버 메소드)
먹는다 void eat(String food)
씻는다 void wash(String soap)
1. 은닉성(encapsulation)
🌝접근명시자🌝
- private : 외부의 어떠한 클래스도 접근할 수 없다.
- public: 외부의 어떤 클래스라도 접근할 수 있다.
- protected: 외부의 클래스로부터는 보호하되 상속한 자식 클래스에게는 접근을 허용한다.
- default(생략): 외부의 클래스로부터는 보호하되 동일한 패키지에 있는 클래스들에게는 허용한다.
2. 상속성
3. 다형성
class Person {
}
Person p = new Person();
class Person {
public Person (String name) {
}
}
Person p1 = new Person(); //이렇게 생성할 수 없다.
Person p2 = new Person("홍길동");
클래스를 입력받아 5명의 이름, 국어, 영어, 수학을 입력받아 총점, 평균을 구하고 성적 순으로 정렬하여 출력하는 프로그램
//class
public class Student { //class로 세트를 만들었다.
String name;
int kor, eng, math, tot;
double avg;
}
import java.util.Scanner;
public class StudentTest {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String []name = new String[5];
int []kor = new int[5];
int []eng = new int[5];
int []math = new int[5];
int []tot = new int[5];
double []avg = new double[5];
for(int i=0; i<name.length; i++) {
System.out.print((i+1)+ "번째 학생의 이름을 입력하세요: ");
name[i] = sc.next();
System.out.print((i+1)+ "번째 학생의 국어점수를 입력하세요: ");
kor[i] = sc.nextInt();
System.out.print((i+1)+ "번째 학생의 영어점수를 입력하세요: ");
eng[i] = sc.nextInt();
System.out.print((i+1)+ "번째 학생의 수학점수를 입력하세요: ");
math[i] = sc.nextInt();
tot[i] = kor[i] + eng[i] + math[i];
avg[i] = tot[i] / 3.0;
}
System.out.println("이름\t국어\t영어\t수학\t총점\t평균");
for(int i =0; i<name.length; i++) {
System.out.println(name[i] + "\t"
+ kor[i] + "\t"
+ eng[i] + "\t"
+ math[i] + "\t"
+ tot[i] + "\t"
+ avg[i]);
}
System.out.println("--------------------------------------------------");
System.out.println("*** 성적 순으로 정렬 ***");
//정렬
for (int i=0; i<name.length; i++) {
for(int j=i+1; j<name.length; j++) {
if(tot[j] > tot[i]) { //이름, 국어, 영어, 수학, 총점, 평균도 다 바꾸어 주어야 함.
String name_temp = name[i];
name[i] = name[j];
name[j] = name_temp;
int kor_temp = kor[i];
kor[i] = kor[j];
kor[j] = kor_temp;
int eng_temp = eng[i];
eng[i] = eng[j];
eng[j] = eng_temp;
int math_temp = math[i];
math[i] = math[j];
math[j] = math_temp;
int tot_temp = tot[i];
tot[i] = tot[j];
tot[j] = tot_temp;
double avg_temp = avg[i];
avg[i] = avg[j];
avg[j] = avg_temp;
}
}
}
for(int i =0; i<name.length; i++) {
System.out.println(name[i] + "\t"
+ kor[i] + "\t"
+ eng[i] + "\t"
+ math[i] + "\t"
+ tot[i] + "\t"
+ avg[i]);
}
}
}
//class
public class Person {
private String name;
private int age;
//생성자가 매개변수를 가질 수도 있다.(매개변수 2개)
public Person(String n, int a) { //클래스 이름과 동일하게
name = n;
age = a;
}
//생성자 함수가 중복될 수 있다.
public Person() {
name = "홍길동";
age = 20;
}
public Person(String n) {
name = n;
age = 20;
}
public Person(int a) {
name = "홍길동";
age = a;
}
//name에 접근하여 값을 설정하는 메소드를 만든다.
public void setName(String n) { //setName, setAge 같은 맴버에 접근하여 값을 변경시키는 메소드들 ==> setter(설정자)라고 한다.
name = n;
}
//age에 접근하여 값을 설정하는 메소드
public void setAge(int a) {
age = a;
}
//name을 반환하는 메소드를 만든다.
public String getName() { //getName, getAge와 같은 맴버변수에 접근하여 값을 읽어오는 기능들 ==> getter(접근자)라고 한다.
return name;
}
//age를 반환하는 메소드
public int getAge() {
return age;
}
public void eat(String food) {
System.out.println(age + "살 " + name + "이(가) " + food + "를(을) 먹어요!");
}
public void wash(String soap) {
System.out.println(age + "살 " + name + "이(가) " + soap + "으로 씻어요!");
}
}
//출력
package exam05;
public class PersonTest {
public static void main(String[] args) {
// Person p1;
// p1 = new Person();
Person p1 = new Person(); //매개변수가 하나도 없으면 Person.java에서 설정해놓은 홍길동이 나옴.
Person p2 = new Person("이순신" , 30);
Person p3 = new Person("이순신");
Person p4 = new Person(30);
p1.eat("라면");
p2.eat("라면");
p3.eat("라면");
p4.eat("라면");
}
}
은행 계좌를 나타내는 BankAccount 클래스를 입력하고 다양한 실험을 해보자. BankAccount 는 잔고를 나타내는 정수형 멤버변수(balance)를 가지고 있고 예금 인출 메소드(draw)와 예입 메소드(deposit), 현재의 잔고를 반환하는 메소드(getBalance)를 가지고 있다.
//class
public class BankAccount {
private int balance; //잔액을 표시하는 변수
public void deposit(int amount) { //저금을 하는 메소드
balance += amount;
}
public void withdraw(int amount) { //인출하는 메소드
if(amount > balance) {
System.out.println("잔액이 부족합니다.");
return;
}
balance -= amount;
}
public void printBalance() { //현재 잔액을 출력하는 메소드
System.out.println("현재 잔액: " + getBalance());
}
public void addInterest() { //현재 잔액에 대하여 연 7.5%이자를 계산하여 추가하는 메소드
balance += (int)(balance*0.075);
}
public void setBalance(int balance) {
this.balance = balance;
}
public int getBalance() {
return balance;
}
//각각의 메소드 안에 내용을 구체화 해보기.
}
//출력
public class BankAccountTest {
public static void main(String[] args) {
BankAccount a1 = new BankAccount();
BankAccount a2 = new BankAccount();
a1.deposit(100);
a2.deposit(50);
a1.withdraw(60);
a2.withdraw(300);
//System.out.println("a1의 잔고: " + a1.getBalance());
//System.out.println("a2의 잔고: " + a2.getBalance());
a1.printBalance();
a2.printBalance();
a1.addInterest();
a2.addInterest();
a1.printBalance();
a2.printBalance();
}
}
로켓을 나타내는 Rocket클래스를 작성하고 테스트해보자. Rocket 클래스는 다음과 같은 필드와 메소드를 가진다.
//Rocket.java
public class Rocket {
private int x, y;
public Rocket(int x, int y) {
super();
this.x = x;
this.y = y;
}
public Rocket() {
super();
// TODO Auto-generated constructor stub
}
public int getX() {
return x;
}
public void setX(int x) {
this.x = x;
}
public int getY() {
return y;
}
public void setY(int y) {
this.y = y;
}
public String toString() {
return "x: " + x + "\t" + "y: " + y;
}
public int moveUp() {
return y + 1;
}
}
//출력
public class RocketTest {
public static void main(String[] args) {
Rocket r1 = new Rocket(4, 5);
r1.moveUp();
r1.toString();
System.out.println(r1);
System.out.println(r1.moveUp());
System.out.println(r1.toString());
}
}
Person이라는 클래스를 작성하고 테스트해보자. Person 클래스는 다음과 같은 필드와 메소드를 가진다.
//Person.java
public class Person {
public String name;
private String mobile, office, email;
public void setName(String n) {
name = n;
}
public void setMobile(String m) {
mobile = m;
}
public void setOffice(String o) {
office = o;
}
public void setEmail(String e) {
email = e;
}
public String getName() {
return name;
}
public String getMobile() {
return mobile;
}
public String getOffice() {
return office;
}
public String getEmail() {
return email;
}
public Person(String n, String m, String o, String e) {
super();
this.name = n;
this.mobile = m;
this.office = o;
this.email = e;
}
public String toString() {
return "이름: " + name + "\t" +
"전화번호: " + mobile + "\t" +
"직장 전화번호: " + office + "\t" +
"이메일: " + email;
}
}
//출력
public class PersonTest {
public static void main(String[] args) {
Person p = new Person("홍길동", "010-1234-5678", "032)111-1111", "ppp@gmail.com");
System.out.println(p.toString());
}
}
노래 한 곡을 나타내는 클래스 Song 을 작성하고 테스트해보자. Song클래스는 다음과 같이 정의되고 사용된다. this()도 사용해보자.
//Song.java
public class Song {
private String title, artist;
private int length;
public Song(String title, String artist, int length) {
this.title = title;
this.artist = artist;
this.length = length;
}
public Song(String title, String artist) {
this.title = title;
this.artist = artist;
}
public Song(String title) {
this.title = title;
}
public Song() {
this("Outward Bound", "Nana", 180);
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getArtist() {
return artist;
}
public void setArtist(String aritst) {
this.artist = artist;
}
public int getLength() {
return length;
}
public void setLength(int length) {
this.length = length;
}
}
//출력
package Practice187_03;
public class SongTest {
public static void main(String[] args) {
Song s1 = new Song("Outward Bound", "Nana", 180);
Song s2 = new Song("Jambalya", "Carpenters");
Song s3 = new Song("yesterday");
Song s4 = new Song();
System.out.println("노래 제목: " +s1.getTitle() + "\t" +
"가수: " +s1.getArtist() + "\t" +
"길이: " +s1.getLength() + "\t");
System.out.println("노래 제목: " +s2.getTitle() + "\t" +
"가수: " +s2.getArtist() + "\t" +
"길이: " +s2.getLength() + "\t");
System.out.println("노래 제목: " +s3.getTitle() + "\t" +
"가수: " +s3.getArtist() + "\t" +
"길이: " +s3.getLength() + "\t");
System.out.println("노래 제목: " +s4.getTitle() + "\t" +
"가수: " +s4.getArtist() + "\t" +
"길이: " +s4.getLength() + "\t");
}
}