code040.java
1package pack01; 2 3public class code040 4{ 5 private String name = "ľ����"; //��Ʒ���� 6 private double price = 1880.5; //��Ʒ�۸� 7 private int count = 100; //���� 8 private String factory = "̨��ʡ̨���м�¡���Ŧ��������"; //��ַ 9 10 public String getName() 11 { 12 return this.name; 13 } 14 15 public double getPrice() 16 { 17 return this.price; 18 } 19 20 public int getCount() 21 { 22 return this.count; 23 } 24 25 public String getFactory() 26 { 27 return this.factory; 28 } 29} 30