定义⼀个长⽅形类,定义求周长和⾯积的⽅法实例/*
定义⼀个长⽅形类,定义求周长和⾯积的⽅法,
然后定义⼀个测试了Test2,进⾏测试。
长⽅形的类:
成员变量:
长,宽
成员⽅法:
求周长:(长+宽)*2;
求⾯积:长*宽
注意:
import必须出现在所有的class前⾯。
*/
import java.util.Scanner;
class ChangFangXing {
//长⽅形的长
private int length;
//长⽅形的宽
private int width;
public ChangFangXing(){}
//仅仅提供setXxx()即可
public void setLength(int length) {
this.length = length;
}
public void setWidth(int width) {
this.width = width;
}
//求周长
public int getZhouChang() {
return (length + width) * 2;
}
//求⾯积
public int getArea() {
return length * width;
}
nextint()方法
}
class Test2 {
public static void main(String[] args) {
//创建键盘录⼊对象
Scanner sc = new Scanner(System.in);
System.out.println("请输⼊长⽅形的长:");
int length = sc.nextInt();
System.out.println("请输⼊长⽅形的宽:");
int width = sc.nextInt();
//创建对象
ChangFangXing cfx = new ChangFangXing();
//先给成员变量赋值
cfx.setLength(length);
cfx.setWidth(width);
System.out.println("周长是:"+ZhouChang());
System.out.println("⾯积是:"+Area());
}
}

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。