标签:返回 日期 The 客户 bsp rect 修改 变量 内容
Java实验报告
实验二 Java简单类与对象
一、 实验目的
(1) 掌握类的定义,熟悉属性、构造函数、方法的作用,掌握用类作为类型声明变量和方法返回值;
(2) 理解类和对象的区别,掌握构造函数的使用,熟悉通过对象名引用实例的方法和属性;
(3) 理解static修饰付对类、类成员变量及类方法的影响。
二、 实验内容
(1) 使用构造函数完成各属性的初始赋值
(2) 使用get…()和set…()的形式完成属性的访问及修改
(3) 提供计算面积的getArea()方法和计算周长的getLength()方法
三、 实验过程(请自己调整格式)
1 class Main 2 { 3 private double width,heigh; 4 private String color; 5 6 public Rectangle(double width,double heigh,String color) 7 { 8 this.setWidth(width); 9 this.setHeigh(heigh); 10 this.setColor(color); 11 } 12 public double getWidth() 13 { 14 return width; 15 } 16 public void setWidth(double width) 17 { 18 this.width=width; 19 } 20 public double getHeigh() 21 { 22 return heigh; 23 } 24 public void setHeigh(double heigh) 25 { 26 this.heigh=heigh; 27 } 28 public String getColor() 29 { 30 return color; 31 } 32 public void setColor(String color) 33 { 34 this.color=color; 35 } 36 public double getArea() 37 { 38 return this.width*this.heigh; 39 } 40 public double getLength() 41 { 42 return 2*this.width+2*this.heigh; 43 } 44 } 45 public class Rectangle 46 { 47 public static void main(String args[]) 48 { 49 Rectangle i = null; 50 i = new Rectangle(3,4,"red"); 51 System.out.println("矩形的颜色为:"+i.getColor()); 52 System.out.println("矩阵的周长为:"+i.getLength()); 53 System.out.println("矩阵的面积为:"+i.getArea()); 54 } 55 }
四、 总结:
标签:返回 日期 The 客户 bsp rect 修改 变量 内容
原文地址:https://www.cnblogs.com/TheMatrixOfTYY/p/11540021.html