Java 习题(面向对象)

1.(面向对象基础)写一个Worker 类,并创建多个Worker 对象。

  1. 为Worker 类添加四个属性,
    <1>int 类型的id,表示工人的编号;
    <2>String 类型的name,表示工人的姓名;
    <3>int 类型的age,表示工人的年龄;
    <4>double 类型的salary,表示工人的工资。
  2. 为Worker 类添加两个构造方法,
    <1>公开无参构造方法;
    <2>接受四个参数的构造方法,四个参数分别为int、字符串、int 和double类型。
  3. 为Worker 类添加两个work 方法,一个无参,打印工人姓名工作8小时 另一个带整数参数,打印工人姓名以及工作的时间(为多少小时)。
package com.fxm.test;
public class Test1{public static void main(String[] args){Worker w = new Worker(10086,"xiaobai",18,1800);w.work();w.work(6);}
}
class Worker{int id;String name;int age;double salary;public Worker(){}public Worker(int id,String name,int age,double salary){this.id = id;this.name = name;this.age = age;this.salary = salary;}public void work(){System.out.println(name+" 工作8小时");}public void work(int hours){System.out.println(name+" 工作 "+hours+" 小时");}
}

2 ** 、完成如下代码:

public class WorkerArrayTest{ public static void main(String[] args){
//1 、创建一个元素为Worker类型的数组长度为 3
//2 、创建 3 个Worker对象并保存到数组中
//3 、遍历数组,并调用每一个Worker对象的无参work方法
//4 、调用oldWorker函数
}
//写一个函数oldWorker遍历数组返回其中年纪最大的Worker对象
/ / 形参为Worker[]类型 返回值为Worker类型
}

package com.fxm.test;
public class Test2{public static void main(String[] args){Worker[] ws = new Worker[3];ws[0] = new Worker("xiaobai",18);ws[1] = new Worker("xiaohei",20);ws[2] = new Worker("xiaohong",19);for(int i = 0; i < ws.length; i++){ws[i].work();}Worker max = oldWorker(ws);System.out.println(max.name+"-->"+max.age);}public static Worker oldWorker(Worker[] ws){Worker max = ws[0];for(int i = 0; i < ws.length; i++){if(max.age < ws[i].age){max = ws[i];}					}return max;}
}
class Worker{String name;int age;public void work(){}public Worker(String name,int age){this.name = name;this.age = age;}
}

3 *** 、定义一个Company类,该类中有一个Worker[]类型属性,保存多个Worker对 象。完成如下代码:
public class Company{ Worker[] ws = new Worker[16]; int count = 0; / / 记录ws中有效的元素个数
//完成添加Worker方法
public void addWorker(Worker w){
//如果ws已满,扩容
//添加 w
//将count递增 1
}
//完成方法
返回每月公司需要支付的薪资
public double getAllSalaries(){ / / 遍历数组,并计算总额 }
//完成方法
判断一个给定的 W o r k e r 对象是否属于当前公司(通过 i d 判断) public boolean contains(Worker w){
//遍历数组进行判断
} }

package com.fxm.test;
public class Test3{public static void main(String[] args){Company c = new Company();//添加员工Worker w1 = new Worker(1,"zhang3",18,18000.0);Worker w2 = new Worker(2,"li4",20,20000.0);Worker w3 = new Worker(3,"wang5",16,16000.0);c.addWorker(w1);c.addWorker(w2);double sum  = c.getAllSalaries();System.out.println(sum);System.out.println(c.contains(w1));System.out.println(c.contains(w3));}
}
class Company{Worker[] ws = new Worker[16];int count = 0;public void addWorker(Worker w){if(count == ws.length){ws = java.util.Arrays.copyOf(ws,ws.length << 1);}ws[count] = w;count++;}public double getAllSalaries(){double sum = 0.0;for(int i = 0; i < count; i++){sum += ws[i].salary;}return sum;}public boolean contains(Worker w){for(int i = 0; i < count; i++){if(ws[i].id == w.id){return true;}}return false;}
}

4.(封装)已知一个类Student 代码如下:

class Student{String name;int age;String address;String zipCode;String mobile; }
  • 把Student 的属性都作为私有,并提供get/set 方法以及适当的构造方法。
  • 为Student 类添加一个getPostAddress 方法,要求返回Student 对象的 地址和邮编。
package com.fxm.test;
public class Test4{public static void main(String[] args){Student s = new Student();s.setName("xiaobai");s.setAddress("nanyang");s.setZipCode("474250");s.study(6);System.out.println(s.getPostAddress());}
}
class Student{private String name;private int age;private String address;private String zipCode;private String mobile;public String getName(){return name;}public void setName(String newName){name = newName;}public int getAge(){return age;}public void setAge(int newAge){age = newAge;}public String getAddress(){return address;}public void setAddress(String newAddress){address = newAddress;}public String getZipCode(){return zipCode;}public void setZipCode(String newZipCode){zipCode = newZipCode;}public String getMobile(){return mobile;}public void setMobile(String newMobile){mobile = newMobile;}public void study(int hours){System.out.println(name+"ѧϰ"+hours+"Сʱ");}public String getPostAddress(){return address+zipCode;}
}

5、 *** .使用day07的Teacher类和Student类
类 Clazz //该类对象表示一个班级
属性
Teacher t
Student[] ss = new Student[10];//保存多个Student对象
int count;//表示有效元素个数
方法:
addStudent(Student s);//添加Student对象
removeStudent(int id);//根据id移除Student对象 updateStudent(Student s);//更新Student对象
queryStudent(int id);//根据id查询Student对象

package com.fxm.test;
public class Test5{public static void main(String[] args){Clazz c = new Clazz();Student s1 = new Student(1,"xiao1hei",16,'男');Student s2 = new Student(2,"xiao2hei",16,'男');Student s3 = new Student(3,"xiao3hei",16,'男');Student s4 = new Student(4,"xiao4hei",16,'男');c.addStudent(s1);c.addStudent(s2);c.addStudent(s3);c.addStudent(s4);s4.age = 18;c.updateStudent(s4);Student s = c.queryStudent(4);System.out.println(s.name+"-->"+s.age);c.removeStudent(4);System.out.println(c.queryStudent(4));}
}
class Student{int id;String name;int age;char sex;public Student(int id,String name,int age,char sex){this.id = id;this.name = name;this.age = age;this.sex = sex;}public void study(){System.out.println(name+"学习8小时");	}public void study(int hours){System.out.println(name+"学习"+hours+"小时");}
}class Teacher{int id;String name;String course;public void teach(){System.out.println(name+"教"+course);}
}class Clazz{Student[] ss = new Student[10];Teacher t;int count;public void addStudent(Student s){if(ss.length == count){ss = java.util.Arrays.copyOf(ss,ss.length << 1);}ss[count] = s;count++;}public void removeStudent(int id){int index = -1;for(int i = 0; i < count; i++){if(ss[i].id == id){index = i;break;}}if(index == -1){return;}System.arraycopy(ss,index+1,ss,index,count-index-1);count--;}public boolean updateStudent(Student s){for(int i = 0; i < count; i++){if(ss[i].id == s.id){ss[i] = s;return true;}}return false;}public Student queryStudent(int id){for(int i = 0; i < count; i++){if(ss[i].id == id){return ss[i];}}return null;}
}

6、按类图要求写出所有的类
Instrument表示乐器类,play方法打印输出”弹奏乐器”
Wind继承Instrument,重写play方法,打印输出”弹奏Wind”
并提供另外一个playWind方法,打印输出”调用wind的play2方法”
Brass继承Instrument,重写play方法,打印输出”弹奏Brass”
并提供另外一个playBrass方法,打印输出”调用Brass的play2方法”

package com.fxm.test;
public class Test6{public static void main(String args[]){Wind w = new Wind();w.play();w.playWind();Brass b = new Brass();b.play();b.playBrass();}
}
class Instrument{public void play(){System.out.println(" 弹奏乐器");}
}
class Wind extends Instrument{public void play(){System.out.println(" 弹奏Wind");}public void playWind(){System.out.println(" 调用Wind的play2方法");}
}
class Brass extends Instrument{public void play(){System.out.println(" 弹奏Brass");}public void playBrass(){System.out.println(" 调用Brass的play2方法");}
}

7.(封装、继承)有以下几个类,根据下面的继承关系,用 Java 代码实现。
a) Circle 类(圆形) ,属性:半径;方法:求周长、求面积
b) Rect 类(矩形) ,属性:长、宽;方法:求周长、求面积
c) Square 类(正方形) ,属性:边长;方法:求周长、求面积
提示:
1) 三个子类各自有其属性,圆:radius半径 矩形:length长 width宽 正方形: length边长;
2) 父类中的周长(girth)和面积(area)的方法统一返回0.0,在三个子类中重写两个方法
圆 周长公式:3.142r 面积公式:3.14rr
矩形 周长公式:(length+width)2 面积公式 lengthwidth
正方形:周长公式 length4 面积公式 lengthlength

package com.fxm.test;
public class Test7{public static void main(String args[]){Circle c = new Circle();c.area();c.girth();}
}
class Shape{public double area(){		return 0.0;}public double girth(){return 0.0;}
}
class Circle extends Shape{double radius;public Circle(){}public Circle(double radius){this.radius = radius;}public void setRadius(double radius){this.radius = radius;}public double getRadius(){return radius;}public double area(){return (3.14*radius*radius);}public double girth(){return (6.28*radius);}
}
class Rect extends Shape{private double length;private double width;public void Rect(){}public void Rect(double length,double width){this.length = length;this.width = width;}public void setLength(double length){this.length = length;}public void setWidth(double width){this.width = width;}public double getLength(){return length;}public double getWidth(){return width;}public double area(){return (length*width);}public double girth(){return ((length+width)*2);}
}
class Square extends Shape{private double length;public void setLength(double length){this.length = length;}public double getLength(){return length;}public double area(){return (length*length);}public double girth(){return (length*4);}
}

8.(封装、继承、super)某公司的雇员分为以下若干类:

Employee:这是所有员工总的父类,属性:员工的姓名,员工的生日月份。方法:getSalary(intmonth) 根据参数月份来确定工资,如果该月员工过生日,则公司会额外奖励100 元。

SalariedEmployee:Employee 的子类,拿固定工资的员工。属性:月薪

HourlyEmployee: Employee 的子类, 按小时拿工资的员工, 每月工作超出160 小时的部分按照1.5 倍工资发放。属性:每小时的工资、每月工作的小时数

SalesEmployee:Employee 的子类,销售人员,工资由月销售额和提成率决定。 属性:月销售额、提成率

BasePlusSalesEmployee:SalesEmployee 的子类,有固定底薪的销售人员,工资 由底薪加上销售提成部分。属性:底薪。

根据要求创建 SalariedEmployee 、 HourlyEmployees 、SaleEmployee 和 BasePlusSalesEmployee四个类的对象各一个,并计算某个月这四个对象的工资。
注意:要求把每个类都做成完全封装,不允许非私有化属性。

package com.fxm.test;public class Employee {public Employee(String name, int month){this.name = name;this.month = month;}public float get_Salary(int month){//如果月份为员工生日月份,则增加100if(month == this.month){return 100;}else{return 0;}}private String name;private int month;public static void main(String[] args) {Employee a[] = new Employee[4];a[0] = new SalariedEmployee("A", 2, 1000);a[1] = new HourlyEmployee("B", 3, 2000, 200);a[2] = new SalesEmployee("C", 4, 50000, (float) 0.1);a[3] = new BasedPlusSalesEmployee("D", 5, 50000, (float) 0.1, 1000);System.out.println("A的工资为" + a[0].get_Salary(2));System.out.println("B的工资为" + a[1].get_Salary(2));System.out.println("C的工资为" + a[2].get_Salary(2));System.out.println("D的工资为" + a[3].get_Salary(2));}
}class SalariedEmployee extends Employee{public SalariedEmployee(String name, int month, float salary){super(name, month);this.salary = salary;	}@Overridepublic float get_Salary(int month){return salary + super.get_Salary(month);  }private float salary;
}
class HourlyEmployee extends Employee
{public HourlyEmployee(String name, int month, float salary, int hour){super(name, month);this.salary = salary;this.hour = hour;}@Overridepublic float get_Salary(int month){//大于160小时的情况if (hour > 160){return (float) (salary * 160 + (hour - 160) * salary * 1.5 + super.get_Salary(month));}else{return salary * hour + super.get_Salary(month);}}private float salary;  //每小时工资private int hour;    //每月工作的小时数
}//销售人员
class SalesEmployee extends Employee
{public SalesEmployee(String name, int month, float sale, float bonus){super(name, month);this.sale = sale;this.bonus = bonus;}@Overridepublic float get_Salary(int month){return sale * bonus + super.get_Salary(month);}private float sale;  //销售额private float bonus;  //提成率
}//有固定底薪的销售人员
class BasedPlusSalesEmployee extends SalesEmployee
{public BasedPlusSalesEmployee(String name, int month, float sale,float bonus, float baseSalary){super(name, month, sale, bonus);this.baseSalary = baseSalary;}@Overridepublic float get_Salary(int month){return baseSalary + super.get_Salary(month);}private float baseSalary; //底薪
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/440138.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

机器学习笔记(2):单变量线性回归

目录 1&#xff09;Model representation 2&#xff09;Cost function 3&#xff09;Cost function intuition 1 4&#xff09;Cost function intuition2 5&#xff09;Gradient descent 6&#xff09;Gradient descent intuition 7&#xff09;Gradient descent for li…

指针右左法则----复杂指针解析

其实如果写得出&#xff08;其实不难&#xff09;指针和数组的声明的EBNF的话&#xff0c;那么直接看就可以反应过来了…… 右左法则是一个既著名又常用的方法。不过&#xff0c;右左法则其实并不是C标准里面的内容&#xff0c;它是从C标准的声明规定中归纳出来的方法。C标准的…

【POJ - 3694】Network(对dfn求lca 或 缩点+lca 或 边双连通+并查集)

题干&#xff1a; 网络管理员管理大型网络。该网络由N台计算机和成对计算机之间的M链路组成。任何一对计算机都通过连续的链接直接或间接连接&#xff0c;因此可以在任何两台计算机之间转换数据。管理员发现某些链接对网络至关重要&#xff0c;因为任何一个链接的故障都可能导…

安装VMware tools

点击“虚拟机” 安装VMware tools提取图中文件到“下载” 提取登入root 进入 cd 下载/vmware-tools-distrib 执行 ./vmware-install-pl 输入yes或者点击“enter”出现图中&#xff0c;即为成功安装

Keras入门实战(1):MNIST手写数字分类

目录 1)首先我们加载Keras中的数据集 2&#xff09;网络架构 3&#xff09;选择编译(compile参数) 4&#xff09;准备图像数据 5) 训练模型 6&#xff09;测试数据 前面的博客中已经介绍了如何在Ubuntu下安装Keras深度学习框架。 现在我们使用 Keras 库来学习手写数字分…

什么是BNF EBNF 巴科斯范式及其扩展 BNF Augmented BNF

什么是BNF范式,什么又是EBNF范式? 巴科斯范式及其扩展 BNF & Augmented BNF 什么是巴科斯范式&#xff1f;   巴科斯范式(BNF: Backus-Naur Form 的缩写)是由 John Backus 和 Peter Naur 首先引入的用来描述计算机语言语法的符号集。   现在&…

root 进入ssh 出现问题

用root输入下面命令&#xff0c;一直让输入密码&#xff0c;并提示错误 ssh localhost那是因为系统默认禁止root用户登录ssh 首先&#xff0c;CtrlC退出密码输入界面&#xff1a;然后输入&#xff1a;su - 然后&#xff0c;编辑sshd_config文件&#xff0c;输入&#xff1a;…

【BZOJ - 2574】[Poi1999] Store-Keeper(点双连通分量,求割点,记忆化bfs)

题干&#xff1a; 有一个仓库被分成n*m 个矩形区域&#xff0c;如果两个区域有一条公共边&#xff0c;则被认为这两个区域相邻。包裹都放在一个区域中&#xff0c;剩余的区域或者空闲或者被集装箱占有&#xff0c;这是因为集装箱太重&#xff0c;仓库管理员不能将集装箱搬走。…

机器学习笔记(3):线性代数回顾

目录 1&#xff09;Matrices and vectors 2&#xff09;Addition and scalar multiplication 3&#xff09;Matrix-vector multiplication 4&#xff09;Matrix-matrix multiplication 5&#xff09;Matrix multiplication properties 6&#xff09;Inverse and transpos…

hadoop 安装

Hadoop单机和伪分布式安装 更新apt 用root用户登录 先更新一下 apt apt-get update然后安装vim apt-get install vim安装VMware tools tools 安装 安装SSH、配置SSH无密码登陆 单节点模式都需要用到 SSH 登陆&#xff0c;Ubuntu 默认已安装了 SSH client&#xff0c;此…

机器学习笔记(4):多变量线性回归

目录 1&#xff09;Multiple Features 2&#xff09;Gradient descent for multiple variables 3&#xff09;Gradient descent in practice 1: Feature Scaling 4&#xff09;Gradient descent in pratice2: Learning rate 5&#xff09;Features and polynomial regress…

【POJ - 2942】Knights of the Round Table(点双连通分量,二分图判断奇环奇圈)

题干&#xff1a; Being a knight is a very attractive career: searching for the Holy Grail, saving damsels in distress, and drinking with the other knights are fun things to do. Therefore, it is not very surprising that in recent years the kingdom of King …

zookeeper单节点部署

hadoop 安装 在/install-package目录下查看zookeeper的安装包 本文中安装的是zookeeper-3.4.12.tar.gz 下方为百度云链接 链接&#xff1a;https://pan.baidu.com/s/1bzq4ILH41owtS__3tBCcRQ 提取码&#xff1a;6q4r 把下载好的zookeeper-3.4.12.tar.gz 放到/install-packa…

机器学习笔记(五):逻辑回归

目录 1&#xff09;Classification 2&#xff09;Hypothesis Representation 3&#xff09;Decision boundary 4&#xff09;Cost function 5&#xff09;Simplified cost function and gradient descent 6&#xff09;Multi-class classification:One-vs-all 7&#xf…

xrdp完美实现Windows远程访问Ubuntu 16.04

前言&#xff1a; 在很多场景下&#xff0c;我们需要远程连接到Linux服务器(本文是Ubuntu)&#xff0c;传统的连接主要分为两种。 第一种&#xff1a;通过SSH服务&#xff08;使用xshell等工具&#xff09;来远程访问&#xff0c;编写终端命令&#xff0c;不过这个是无界面的&a…

【HDU - 6203】ping ping ping(lca+贪心思想,对lca排序,树状数组差分)

题干&#xff1a; 给出一个n1个点的树&#xff0c;以及p个点对&#xff0c;需要断开一些点&#xff0c;使得这p个点对路径不连通。输出应该断开的最少点数。 解题报告&#xff1a; 从那p个点对入手的话&#xff1a;首先考虑只有一对点的话&#xff0c;肯定是这条路径上的随便…

机器学习笔记(六):正则化

目录 1&#xff09;The problem of overfitting 2&#xff09;Cost function 3&#xff09;Regularized linear regression 4&#xff09;Regularized logistic regression 我们已经学习了线性回归和逻辑回归算法&#xff0c;已经可以有效解决很多问题&#xff0c;但是在实…

Hbase单节点安装

zookeeper单节点部署 实验环境 操作系统&#xff1a;Ubuntu 16.04 Hadoop&#xff1a;Hadoop 2.7.5 Zookeeper&#xff1a;zookeeper 3.4.12 Java&#xff1a;java version 1.8.0 到/install-package目录下查看hbase安装包 #>ls /install-package本文中用的是hbase-1…

ROS 常用命令字典

版权声明&#xff1a;本文为博主原创文章&#xff0c;转载请标明出处: http://www.cnblogs.com/liu-fa/p/5761448.html 该博文适合已经具备一定的ROS编程基础的人&#xff0c;快速查看ROS相关指令。 本文持续更新中&#xff0c;望关注收藏&#xff0c;一起改进... 创建 ROS 工作…

【HDU - 3966】Aragorn's Story(树链剖分,模板题)

题干&#xff1a; Our protagonist is the handsome human prince Aragorn comes from The Lord of the Rings. One day Aragorn finds a lot of enemies who want to invade his kingdom. As Aragorn knows, the enemy has N camps out of his kingdom and M edges connect t…