code040.java
package pack01;
public class code040
{
private String name = "ľ����"; //��Ʒ����
private double price = 1880.5; //��Ʒ�۸�
private int count = 100; //����
private String factory = "̨��ʡ̨���м�¡���Ŧ��������"; //��ַ
public String getName()
{
return this.name;
}
public double getPrice()
{
return this.price;
}
public int getCount()
{
return this.count;
}
public String getFactory()
{
return this.factory;
}
}