인스턴스, this, 접근제한자, 겟터 셋터
=======================인스턴스 멤버와 this=========================== 인스턴스란 객체를 말하며 오브젝트라고도 한다. 인스턴스 멤버란필드를 말하며 인스턴스 변수(멤버), 프로퍼티, 멤버변수, 객체변수라 한다. public class Account {int no;//계좌 번호String owner;//예금주 -> void deposit(int amount, int no) {인스턴스 메소드 (매개변수)멤버 메소드int result = bal + amount; (지역변수) ----------------this-------------------------- this란객체 자기자신의 주소값을 가지고 있는것. public class Book {int no;String ti..
2019. 3. 8. 19:09