定义一个矩形类Rectangle:(知识点:对象的创建和使用)
1 定义三个方法:getArea()求面积、getPer()求周长,showAll()分别在控制台输出长、宽、面积、周长。
2 有2个属性:长length、宽width
3 创建一个Rectangle对象,并输出相关信息
1 package as; 2 3 public class Rectangle { 4 double length; 5 double width; 6 public void getArea(){ 7 System.out.println("面积是"+length*width); 8 } 9 public void getPer(){ 10 System.out.println("周长是"+(length+width)*2); 11 } 12 public void showAll(){ 13 System.out.println("长是"+length); 14 System.out.println("宽是"+width); 15 getArea(); 16 getPer(); 17 } 18 }
1 package as; 2 import java.util.Scanner; 3 public class unll { 4 public static void main(String[] args) { 5 // TODO Auto-generated method stub 6 Scanner input = new Scanner(System.in); 7 Rectangle r = new Rectangle(); 8 System.out.println("请输入长方形的长:"); 9 r.length = input.nextInt(); 10 System.out.println("请输入长方形的宽:"); 11 r.width = input.nextInt(); 12 r.getArea(); 13 r.getPer(); 14 r.showAll(); 15 } 16 }