代码拉取完成,页面将自动刷新
public class Rectangle {
private float length = 1.0f;
private float width = 1.0f;
public Rectangle() {
}
public float Rectangle(float length, float width) {
return width;
}
public void getlength() {
}
public void setlength(float length) {
if(length<0){
return ;
}
this.length = length;
}
public float getwidth() {
return length;
}
public float setwidth(float width) {
if(width<0){
return 0;
}
return this.width = width;
}
public double getArea() {
return (length+width)*2;
}
public String toString() {
return "Rectangle[length="+length+",width="+width+"]";
}
public static void main(String[] args) {
// TODO Auto-generated method stub
Rectangle yuan = new Rectangle();
yuan.setlength(2);
yuan.setwidth(3);
System.out.println(yuan.getArea());
System.out.println(yuan.toString());
}
// public class Rectangle_Test {
//
// public static void main(String[] args) {
// // TODO Auto-generated method stub
// Rectangle yuan = new Rectangle();
// yuan.setlength(2);
// yuan.setwidth(3);
// System.out.println(yuan.getArea());
// System.out.println(yuan.toString());
// }
//
// }
//public class Circle_2 {
//
// private double radius =1.0;
//
//
// public Circle_2(){
//
// }
//
//
// public double getRadius(){
// return radius;
// }
//
// public void setRadius(double radius){
// this.radius=radius;
// }
//
// public double getArea(){
// return radius;
//
// }
//
// public double getCircumference(){
// return radius*2*3.14;
//
// }
// public String toString(){
//
// return "Circle"+"[radius="+radius+"]";
//
// }
// public static void main(String[] args) {
// // TODO Auto-generated method stub
// Circle_2 circle = new Circle_2();
// circle.setRadius(3);
// System.out.println(circle.getCircumference());
// System.out.println(circle.toString());
// }
//
//}
// import java.util.Scanner;
//
// public class Circle {
//
// private double radius = 1.0;
// private String color = "red";
//
// public Circle() {
//
// }
//
// public Circle(double radius) {
// this.radius=radius;
// }
//
// public double getRadius() {
// return radius;
// //设置获取的限制
// }
//
// public double getArea() {
// double area = 3.14*radius*radius;
// return area;
// }
// //new 一个对象,默认会实现一个构造函数(无参的)。
// //倘若,出现了构造函数(带参数),须写一个无参构造。
// //get不要返回值,set需要。
// //定义成员变量,需初始化值,new一个对象
// public static void main(String[] args) {
// // TODO Auto-generated method stub
// System.out.println("请输入圆的半径");
// Scanner sc = new Scanner(System.in);
// double radius = sc.nextDouble();
// Circle cc = new Circle(radius);//new一个实例对象,用实例对象调用成员方法。
// System.out.println(cc.getArea());
// sc.close();
// }
//
// }
//public class Employee {
//
// private int id;
// private String firstName;
// private String lastName;
// private int salary;
//
//
// public Employee(int id, String firstName, String lastName, int salary) {
// this.firstName=firstName;
// this.lastName=lastName;
// this.id=id;
// this.salary=salary;
// }
//
// public int getID() {
// return id;
//
// }
//
// public String getFirstName() {
// return firstName;
//
// }
//
// public String getLastName() {
// return firstName;
//
// }
//
// public String getName() {
// return firstName+lastName;
//
// }
//
// public int getSalary() {
// return salary;
//
// }
//
// public void setSalary(int salary) {
// this.salary= salary;
//
// }
// public int getAnnualSalary(){
//
// return salary*12;
//
// }
// public int raiseSalary(int percent){
// double p1;
// double p2;
// p1 = (double)percent;
// p2=salary*(p1/100)+salary;
// salary=(int)p2;
// return salary;
//
// }
// public String toString(){
// return "Employee:ID="+id+",Name:"+firstName+lastName+",Salary:"+salary+"元";
//
// }
// public static void main(String[] args) {
// // TODO Auto-generated method stub
//// Employee emp = new Employee(2016,"肖","阳",5000);
//// emp.raiseSalary(10);
//// emp.getName();
//// emp.getAnnualSalary();
//// System.out.println(emp.toString());
// }
//
//}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。