[Java] access modifier & infomation hiding

SeongWon Oh·2021년 8월 14일
0

Java

목록 보기
9/39
post-thumbnail

접근 제어 지시자 (accesss modifier)

  • 클래스 외부에서 클래스의 멤버 변수, 메서드, 생성자를 사용할 수 있는지 여부를 지정하는 키워드

  • 아무것도 없음 (default) : 같은 패키지 내부에서만 접근 가능하다.
    상속 관계라도 패키지가 다르면 접근 불가하다.

  • private : 같은 클래스 내부에서만 접근 가능하다. 풀어서 말하면 외부 클래스, 상속 관계의 클래스에서도 private으로 만들어진 변수나 method에는 접근 불가하다.

  • protected : 같은 패키지나 상속관계의 클래스에서 접근 가능하고 그 외 외부에서는 접근 할 수 없다.

  • public : 클래스의 외부 어디서나 접근이 가능하다.


get()/ set() 메서드

  • private 으로 선언된 멤버 변수는 외부에서 접근 할 수 없다.

  • 하지만 private 변수에 대해 접근, 수정할 수 있는 메서드를 public으로 제공하면 외부에서도 사용할 수 있다.

  • get() 메서드만 제공 되는 경우 read-only 속성이 되는 것이다.

  • 이클립스에서 자동으로 생성이 가능하다. (오른쪽 마우스 - Source - Generate Getters and Setters)


정보 은닉

  • private으로 제어한 멤버 변수도 public 메서드가 제공되면 접근 가능하지만 변수가 public으로 공개되었을 때보다 private 일때 public 메서드에서 각 변수에 대한 제한을 두어 보다 안전한 코드를 만들 수 있다.

  • 객체 지향 프로그램에서 정보 은닉은 필요한 외부에서 접근 가능한 최소한의 정보를 오픈함으로써 객체의 오류를 방지하고 클라이언트 객체가 더 효율적으로 객체를 활용할 수 있도록 해준다.

👨🏻‍💻 Code (Birthday.java)

package ch10;

public class Birthday {
	private int day;
	private int month;
	private int year;
	// private로 정의되어 외부에서 접근이 안된다.
	
	private boolean isValid;
	// integer는 default값이 0이며 boolean은 default값이 False이다.
	
	public int getDay( ) {
		return day;
	}
	
	public void setDay(int day) {
		this.day= day;
	}

	public int getMonth() {
		return month;
	}

	public void setMonth(int month) {
		if (month < 1 || month > 12) {
			isValid = false;
		}
		else {
			isValid = true;
			this.month = month;
		}
	}

	public int getYear() {
		return year;
	}

	public void setYear(int year) {
		this.year = year;
	}
	
	public void showDate() {
		if(isValid) {
			System.out.println(year + "년 " + month + "월 "+ day + "일 입니다.");
		}
		else {
			System.out.println("유효하지 않습니다.");
		}
	}
}

👨🏻‍💻 Code (BirthdayTest.java)

package ch10;

public class BirthdayTest {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		Birthday date = new Birthday();
		date.setYear(2019);
		date.setMonth(12);
		date.setDay(30);
		
		date.showDate();
	}
}

BirthDay에서 멤버 변수들이 private이 아닌 public으로 사용됐다면 main함수에서 date.setMonth(12); 대신 date.month = 100; 이러한 식으로 대입을 할 수 있을 것이다.
이러한 경우 잘못된 값이 들어가도 막을 방법이 없기에 private를 사용하여 set method에서 제어를 해주어 data의 오용을 막아준다.



Reference

  • [Fast Campas] 한번에 끝내는 Java/Spring 웹 개발 마스터 초격차 패키지 Online.
profile
블로그 이전했습니다. -> https://seongwon.dev/

0개의 댓글