add(c);;
add(t);
c.addItemListener(new Cli());
}
class Cli implements ItemListener{
public void itemStateChanged(ItemEvent e){
t.setText(c.getSelectedItem()+"\n");
}
}
}
六、编程题
1.编写一个矩形类Rectangle的Java程序,矩形类有两个数据成员,分别是长rLength和宽rWidth,可以通过getLength()、getWidth()、getArea()方法分别查看矩形的长、宽和面积,也可以通过setLength()和setWidth()方法重新设置矩形的长和宽。
public class Rectangle{
float rLength;
float rWidth;
public float getLength(){
return this.rLength;
}
public float getWidth(){
return this.rWidth;
}
public float getArea(){
return(rLength*rWidth);
}
public void setLength(float l){
this.rLength=l;
}
public void setWidth(float w){
this.rWidth=w;
}
Rectangle(float l,float w){
setLength(l);
setWidth(w);
System.out.println("Length"+getLength());
System.out.println("Width"+getWidth());
System.out.println("Area"+getArea());
}
public static void main(String[]args){
Rectangle r=new Rectangle(1,2);
}