欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

构造器(构造方法)

程序员文章站 2022-04-18 19:53:38
...

题目:编写两个类:TriAngle和TriAngleTest,其中TriAngle类中声明私有的底边长base和高height,同时声明公共方法访问私有变量。此外,提供类必要的构造器。另一个类中使用这些公共方法,计算三角形的面积。

回答:
public class TriAngleTest(){

Triangle s=new Triangle();  //无参对象通过get,set方法赋给私有属性值
s.setBase(5);
s.setHeight(3);
int area1=s.getBase() * s.getHeight()  乘 0.5; (两个星号打不出来)
Triangle t=new Triangle(5,3);   //通过有参构造器直接赋值
int area2=s.getBase() * s.getHeight()  乘 0.5; (两个星号打不出来)

}

public class Triangle(){

private int base;
private int height;  //定义私有属性

public class Triangle(){
}

public Triangle(int a,int b){
	base=a;
	height=b;
}

public void setBase(int a){
	base=a;
}

public int getBase(){
	return base;
}

public void setHeight(int b){
	height=b;
}

public int getHeight(){
	return height;
}

}

相关标签: javaSE java