Tomcat만 쓰다가 Resin을 써볼일이 생겨서 세팅을 해볼려고 하였다. Tomcat보다 세팅하기는 까다롭군... http://www.caucho.com/download/resin-pro-3.1.10.zip 에서 resin-pro를 받는다. 1. Help - > Software Update - > Available SoftWare http://www.improve-technologies.com/alpha/updates/site.xml 추가 후 install 클릭 위 사이트 입력 후 전체 Install시 에러가 난다면 RESIN만 선택하여 설치하자! 2. Window ->Preferences 3. Window ->Preferences Java > Build Path > User Libraries NEW ..
import java.util.*; class Product { int price; int bounsPoint; Product(int price) { this.price=price; bounsPoint=(int)(price/10.0); } } class Tv extends Product { Tv() { super(100); } public String toString() { return "Tv"; } } class Computer extends Product { Computer() { super(200); } public String toString() { return "Computer"; } } class Buyer //물건을 사는 사람 { int money=1000; // 소유자 금액 int bonu..
class Product { int price; int bounsPoint; Product(int price) { this.price=price; bounsPoint=(int)(price/10.0); } } class Tv extends Product { Tv() { super(100); } public String toString() { return "Tv"; } } class Computer extends Product { Computer() { super(200); } public String toString() { return "Computer"; } } class Buyer { int money=1000; int bonusPoint=0; void buy(Product p) { if(money
변수는 클래스변수, 인스턴스변수, 지역변수로 나누어진다. 예) class Test{ int a; // 인스턴수 변수 static int b; // 클래스 변수(static 변수, 공유변수) void method() { int c = 0 ; // 지역변수 } } 1. 인스턴스 변수 객체가 생성될때 만들어진다. 그렇기 때문에 인스턴스 변수의 값을 읽어오거나 저장하기 위해서는 인스턴스를 생성하여야 한다. 독립적인 저장공간을 값을 따로 가질 필요가 있을때 사용한다. 2. 클래스 변수 인스턴스마다 독립적인 저장공간을 갖는 인스턴스 변수와는 달리, 클래스변수는 모든 인스턴스가 공통된 저장공간(변수)를 공유하여 사용한다. ※ 클래스이름. 클래스변수의 형태로 사용하는 게 좋다. 공통된 값을 필요로 할경우 사용되어진다...