package ch03; public class Bus { //버스번호 //수입금 int busNumber; int money; public Bus(int busNumber) { this.busNumber = busNumber; } //this 자기자신 .은 클래스안으로 들어온다 //맴버변수와 지역변수를 구분해서 만들수있게 this를 사용한다. public Bus (int busNumber, int money) { this.busNumber = busNumber; this.money = money; } public void showInfo() { System.out.println("버스의 번호는 " + this.busNumber); } public void showmoney() { System.out.p..