java编程:定义一个矩形类Rectangle

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java编程:定义一个矩形类Rectangle相关的知识,希望对你有一定的参考价值。

(1)该类中包含矩形的宽width和高height两个成员变量;
(2)无参构造方法给宽和高赋值为10;
(3)带两个参数的构造方法分别给width和height赋值;
(4)area方法用于求矩形的面积。
(5)请按要求定义该矩形类。

参考技术A public class Rectangle
private int width;
private int height;
public Rectangle()
this.width = 10;
this.height = 10;


public Rectangle(int width, int height)
this.width = width;
this.height = height;


public int area()
return width * height;


//省略getter/setter
本回答被提问者采纳

定义一个类rectangle,描述一个矩形,包含有长、宽两种属性,以及计算面积的方法;

定义一个类rectangle,描述一个矩形,包含有长、宽两种属性,以及计算面积的方法。然后定义一个测试类Experiment5_1,生成一个长为5,宽为3的矩形对象,并调用其计算面积的方法。

class Rect

private int _len;

private int _width;
public Rect(int len,int width)
this._len = len;

this._width = width;

//定义面积只读属性

public int Area
Get
return _lenth * _width。


扩展资料:

花括号内为函数体。如果没有返回值类型名为"void", 整数类型int,类型返回值为整数类型int,以此类推。类型名有:void int long float int* long* float* 。

C++中函数的调用:函数必须声明后才可以被调用。调用格式为:函数名(实参)。调用时函数名后的小括号中的实参必须和声明函数时的函数括号中的形参个数相同。有返回值的函数可以进行计算,也可以做为右值进行赋值。

参考资料来源:百度百科-Rectangle

参考技术A

class Recangle

private:

int width;

int length;

public:

Recangle()

width = 0; length = 0;;

Recangle(int w,int h)

width = w; height = h;;

int circumference()

return 2*(width+height);

int Area()

return width * height;

void changeRec(int w, int h)

width = w; height = h;;

;

参数:

hdc:设备环境句柄。

nLeftRect:指定矩形左上角的逻辑X坐标。

nTopRect:指定矩形左上角的逻辑Y坐标。

nRightRect:指定矩形右下角的逻辑X坐标。

nBottomRect:指定矩形右下角的逻辑Y坐标。

返回值:如果函数调用成功,返回值非零,否则返回值为0。

Windows NT:若想获得更多错误信息,请调用GetLastError函数。

以上内容参考:百度百科-Rectangle

参考技术B import java.util.Scanner;
import java.lang.Math;
public class rectangClass
double x=0,y=0,x1=0,y1=0;
public rectangClass(double x,double y,double x1,double y1)
Scanner input=new Scanner(System.in);
this.x=x;
this.y=y;
this.x1=x1;
this.y1=y1;

public double area()

double area=0;
System.out.println("x="+x);
System.out.println("y="+y);
System.out.println("x1="+x1);
System.out.println("y1="+y1);
area=((x1-x)*(y1-y));
System.out.println("area="+area);
return area;

public static void main(String[] args)
rectangClass pt=new rectangClass(0,0,8.5,9);

pt.area();



参考技术C class Rect

private int _len;
private int _width;
public Rect(int len,int width)
this._len = len;
this._width = width;

//定义面积只读属性
public int Area
Get
return _lenth * _width;


//返回长方形面积的静态方法
public static int CalcArea(int len,int width)
return len*width;

本回答被提问者和网友采纳

以上是关于java编程:定义一个矩形类Rectangle的主要内容,如果未能解决你的问题,请参考以下文章

定义一个类rectangle,描述一个矩形,包含有长、宽两种属性,以及计算面积的方法;

Java实验报告五

java基础-继承:矩形体积类问题

Java编程题-编写一个定义了包mytest.mypg的类,在该类中通过方法print()输出“?

java,编写一个矩形类,

按要求编写一个Java应用程序: 定义一个类,描述一个矩形,包含有长宽两种属性,和计算面积方法。 编写一个类,继承自矩形类,同时该类描述长方体,具有长宽高属性, 和计算体积的方法。