java第二十课 —— 面向对象习题

news2024/11/26 11:27:20

类与对象练习题

  1. 编写类 A01,定义方法 max,实现求某个 double 数组的最大值,并返回。

    public class Chapter7{
    
    	public static void main(String[] args){
    		A01 m = new A01();
    		double[] doubleArray = null;
    		Double res = m.max(doubleArray);
    		if(res != null){
    			System.out.println("数组的最大值是:" + res);
    		}
    		else{
    			System.out.println("数组输入有误!数组不能为null或者{}。");
    		}
    	}
    }
    class A01{
    	public Double max(double[] doubleArray){ //Double 是一个包装类返回值是double
    		if(doubleArray != null && doubleArray.length > 0){ //先判断数组是否空,再判断数组长度是否大于0
    			double dMax = 0.0;
    			for(int i = 0; i < doubleArray.length; i++){
    				if (doubleArray[i] > dMax){
    					dMax = doubleArray[i];
    				}
    			}
    			return dMax;
    		}
    		else{
    			return null; //Double是类返回值可以为null
    		}
    
    	}
    }
    
  2. 编写类 A02,定义方法 find,实现查找某字符串是否在数组中,并返回索引。

    import java.util.Scanner;
    public class Chapter7{
    
    	public static void main(String[] args){
    		A02 m = new A02();
    		String[] stringArray = {"abc", "123", "hello", "张三","java"};
    		System.out.println("输入你要查找的字符串:");
    		Scanner myScanner = new Scanner(System.in);
    		String elem = myScanner.next();
    		int index = m.find(stringArray, elem);
    		if(index != -1){
    			System.out.println("找到啦!" + elem + "在数组中的下标是:" + index);
    		}
    		else{
    			System.out.println("很遗憾...未找到。");
    		}
    		
    	}
    }
    class A02{
    	public int find(String[] stringArray, String elem){
    		int index = -1;
    		for(int i = 0; i < stringArray.length; i++){
    			if (stringArray[i].equals(elem)){
    				index = i;
    			}
    		}
    		return index;
    	}
    }
    
  3. 编写类 Book,定义方法 updatePrice,实现更改某本书的价格,具体:如果价格 >150,则更改为150,如果价格 >100,更改为100,否则不变。

    public class Chapter7{
    	public static void main(String[] args){
    		Book m = new Book("java从入门到精通", 300);
    		System.out.println("书的信息:");
    		m.inFo();
    		System.out.println("更改后书的价格后:");
    		m.updatePrice();
    		m.inFo();
    	}
    }
    class Book{
    	String name;
    	int price;
    	public Book(String name, int price){
    		this.name = name;
    		this.price = price;
    
    	}
    	public void updatePrice(){
    		if(price > 150){
    			price = 150;
    		}
    		else if(price > 100){
    			price = 100;
    		}
    	}
    	public void inFo(){
    		System.out.println("书名:" + name + "价格:" + price);
    	}
    }
    
  4. 编写类 A03,实现数组的复制功能 copyArr,输入旧数组,返回一个新数组,元素和旧数组一样。

    public class Chapter7{
    	public static void main(String[] args){
    		A03 m = new A03();
    		int[] arr = {0,11,5,99,6};
    		System.out.println("旧数组:");
    		m.inFo(arr);
    		System.out.println("\n新数组:");
    		int[] arrNew = m.copyArr(arr);
    		m.inFo(arrNew);
    	}
    }
    class A03{
    	
    	public int[] copyArr(int[] arr){
    		int[] newArr = new int[arr.length];
    		for(int i = 0; i < arr.length; i++){
    			newArr[i] = arr[i];
    		}
    		return newArr;
    
    	}
    	public void inFo(int[] arr){
    		for(int i = 0; i < arr.length; i++){
    			System.out.print(arr[i] + " ");
    		}
    		
    	}
    }
    
  5. 定义一个圆类 Circle,定义属性:半径,提供显示圆周长功能的方法,提供显示圆面积的方法。

    public class Chapter7{
    	public static void main(String[] args){
    		Circle m = new Circle(1.0);
    		m.inFo();
    	}
    }
    class Circle{
    	double radius;
    	public Circle(double r){
    		this.radius = r;
    	}
    	public double Perimeter(double r){
    		return 2 * Math.PI * radius;
    
    	}
    	public double Area(double r){
    		return Math.PI * radius * radius;
    
    	}
    	public void inFo(){
    		System.out.println("圆的周长为:" + Perimeter(radius));
    		System.out.println("圆的面积为:" + Area(radius));	
    	}
    }
    
  6. 编程创建一个 Cale 计算类,在其中定义 2 个变量表示两个操作数,定义四个方法实现求和、差、乘、商(要求除数为 0 的话,要提示)并创建两个对象,分别测试。

    public class Chapter7{
    	public static void main(String[] args){
    		Cale m1 = new Cale(1.0, 2.0);
    		Cale m2 = new Cale(1.0, 0.0);
    		m1.inFo();
    		m2.inFo();
    	}
    }
    class Cale{
    	double num1;
    	double num2;
    	public Cale(double num1, double num2){
    		this.num1 = num1;
    		this.num2 = num2;
    	}
    	public double Sum(double num1, double num2){
    		return num1 + num2;
    
    	}
    	public double Difference(double num1, double num2){
    		return num1 - num2;
    
    	}
    	public double Multiplication(double num1, double num2){
    		return num1 * num2;
    
    	}
    	public Double Quotient(double num1, double num2){
    		if(num2 != 0){
    			return num1 / num2;
    		}
    		else{
    			return null;
    		}
    	}
    	public void inFo(){
    		System.out.println("num1:" + num1 +"\t"+ "num2:" + num2);
    		System.out.println("和:" + Sum(num1,num2));
    		System.out.println("差:" + Difference(num1,num2));	
    		System.out.println("乘:" + Multiplication(num1,num2));
    		if(num2 != 0.0){
    			System.out.println("商:" + Quotient(num1,num2));	
    		}else
    		{
    			System.out.println("分母不能为0!");
    		}	
    
    	}
    }
    
  7. 设计一个 Dog 类,有名字、颜色和年龄属性,定义输出方法 show() 显示其信息并创建对象,进行测试、【提示 this.属性】。

    public class Chapter7{
    	public static void main(String[] args){
    		Dog m = new Dog("二哈", "黄色", 1);
    		m.show();
    	}
    }
    class Dog{
    	String name;
    	String color;
    	int age;
    	public Dog(String name, String color, int age){
    		this.name = name;
    		this.color = color;
    		this.age = age;
    	}
    	
    	public void show(){
    		System.out.print("名字:" + name + "\t");
    		System.out.print("颜色:" + color + "\t");	
    		System.out.print("年龄:" + age + "\n");			
    	}
    }
    
  8. 给定一个 Java 程序的代码如下所示,则编译运行后,输出结果是 (10,9,10)

在这里插入图片描述

题目中:
    new Test().count1();中的 new Test() 是匿名对象。使用后就不能使用,故只能使用一次!
  1. 定义 Music 类,里面有音乐名 name、音乐时长 times 属性,并有播放 play 功能和返回本身属性信息的功能方法 getlnfo。

    public class Chapter7{
    	public static void main(String[] args){
    		Music m = new Music("枕着光的她", 1.0);
    		m.play();
    		m.getInfo();
    	}
    }
    class Music{
    	String name;
    	double times;
    	public Music(String name, double times){
    		this.name = name;
    		this.times = times;
    	}
    	public void play(){
    		System.out.println("音乐 " + name + " 正在播放中...... 播放时长为: " + times + "分钟。");
    	}
    	
    	public void getInfo(){
    		System.out.print("名字:" + name + "\t");
    		System.out.println("时长:" + times + "h");		
    	}
    }
    
  2. 试写出以下代码的运行结果 (101 100;101 101)

在这里插入图片描述

  1. 在测试方法中,调用 method 方法,代码如下,编译正确,试写出 method 方法的定义形式,调用语句为:System.out.println(method(method(10.0,20.0),100);

    public class Chapter7{
    	public static void main(String[] args){
    		A11 m = new A11(1.0, 2.0);
    		m.getInfo();
    	}
    }
    class A11{
    	double num1;
    	double num2;
    	public A11(double num1, double num2){
    		this.num1 = num1;
    		this.num2 = num2;
    	}
    	public double method(double num1, double num2){
    		return (num1 + num2);
    	}
    	
    	public void getInfo(){
    		System.out.print(method(method(10.0,20.0),100));
    	}
    }
    
  2. 创建一个 Employee 类,属性有(名字,性别,年龄,职位,薪水),提供 3 个构造方法,可以初始化

    (1) (名字,性别,年龄,职位,薪水)

    (2) (名字,性别,年龄)

    (3) (职位,薪水)

    要求充分复用构造器。

    public class Chapter7{
    	public static void main(String[] args){
    		Employee m1 = new Employee("张三", '男', 18, "主任", 10000.0);
    		m1.getInfo();
    		Employee m2 = new Employee("张三", '男', 18);
    		m2.getInfo();
    		Employee m3 = new Employee("主任", 10000.0);
    		m3.getInfo();
    	}
    }
    class Employee{
    	String name;
    	char sex;
    	int age;
    	String job;
    	double salary;
    
    	public Employee(String name, char sex, int age){
    		this.name = name;
    		this.sex = sex;
    		this.age = age;
    	}
    	public Employee(String job, double salary){
    		this.job = job;
    		this.salary = salary;
    	}
    	public Employee(String name, char sex, int age, String job, double salary){
    		this(name, sex, age);//使用前面的构造器,对this的调用必须是构造器的第一个语句。
    		this.job = job;
    		this.salary = salary;
    	}
    	public void getInfo(){
    		System.out.println("name:" + name);
    		System.out.println("sex:" + sex);
    		System.out.println("age:" + age);
    		System.out.println("job:" + job);
    		System.out.println("salary:" + salary);
    		System.out.println("--------------------");
    	}
    }
    
  3. 将对象作为参数传递给方法。

    题目要求:

    (1) 定义一个 Circle 类,包含一个 double 型的 radius 属性代表圆的半径,findArea() 方法返回圆的面积。

    (2) 定义一个类 PassObject,在类中定义一个方法 printAreas(),该方法的定义如下:public void printAreas(Circle c, int times) //方法签名

    (3) 在 printAreas 方法中打印输出 1 到 times 之间的每个整数半径值,以及对应的面积。例如,times 为 5,则输出半径 1,2,3,4,5,以及对应的圆面积。

    (4) 在 main 方法中调用 printAreas() 方法,调用完毕后输出当前半径值。程序运行结果如图所示
    在这里插入图片描述

    public class Chapter7{
    	public static void main(String[] args){
    		Circle m = new Circle(1.0);
    		PassObject m1 = new PassObject();
    		m1.printAreas(m, 5);
    	}
    }
    class Circle{
    	double radius;
    	public Circle(double radius){
    		this.radius = radius;
    	}
    	public double findArea(){
    		return Math.PI * radius * radius;
    	}	
    }
    class PassObject{
    	public void printAreas(Circle c, int times){
    		System.out.println("圆的半径:\t圆的面积:");
    		for(int i = 1; i <= times; i++){
    			c.radius = i;
    			System.out.print(c.radius + "\t\t");
    			System.out.print(c.findArea());
    			System.out.println();
    		}
    		
    	}	
    }
    
  4. 有个人 Tom 设计他的成员变量。成员方法, 可以电脑猜拳电脑每次都会随机生成 0,1,2

    0 表示石头,1 表示剪刀,2 表示布

    并要可以显示 Tom 的输赢次数 (清单)
    在这里插入图片描述

import java.util.Scanner;
public class Chapter7{
	public static void main(String[] args){
		Tom m = new Tom();
		m.menu();
	}
}
class Tom{
	public int Guess(){
		return (int) (Math.random() * 3); // 生成范围在 0 到 2 之间的随机整数
	}
	public void menu(){
		int n = 0;
		Scanner myScanner = new Scanner(System.in);
		System.out.println("*******现在进行石头剪刀步游戏:(三局两胜)********");
		for(int i = 0; i < 3; i++){
			System.out.println("请输入石头/剪刀/步,注意:0 表示石头,1 表示剪刀,2 表示布");
			int num1 = myScanner.nextInt();
			int p = Guess();
			if(p == 0 && num1 == 2 || p == 1 && num1 == 0 || p == 2 && num1 == 1){
				n++;
			}
			System.out.println("机器出的是:" + p + "\t您出的是:" + num1);
		}

		System.out.println("三次猜拳,您赢了" + n + "次!");
		if(n >= 2){
			System.out.println("游戏获胜啦!!!");
		}
		else{
			System.out.println("游戏失败。。。");
		}
	}	
}

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

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

相关文章

内地户口转香港身份的7种途径!2024年怎么同时拥有2个身份?一篇说明白

很多人还不知道怎么同时拥有内地身份和香港身份&#xff0c;这里一次性说明白&#xff0c;不同背景情况及政策有可能随时变化&#xff0c;这里分享最近拿香港身份的7种途径。 #01 优才『香港优秀人才计划』 获批准的申请人无须在来港定居前先获得本地雇主聘任。所有申请人均必…

搜索与图论:图中点的层次

搜索与图论&#xff1a;图中点的层次 题目描述参考代码 题目描述 输入样例 4 5 1 2 2 3 3 4 1 3 1 4输出样例 1参考代码 #include <cstring> #include <iostream> #include <algorithm>using namespace std;const int N 100010;int n, m; int h[N], e[N]…

【云岚到家】-day01-项目熟悉-查询区域服务开发

文章目录 1 云岚家政项目概述1.1 简介1.2 项目业务流程1.3 项目业务模块1.4 项目架构及技术栈1.5 学习后掌握能力 2 熟悉项目2.1 熟悉需求2.2 熟悉设计2.2.1 表结构2.2.2 熟悉工程结构2.2.3 jzo2o-foundations2.2.3.1 工程结构2.2.3.2 接口测试 3 开发区域服务模块3.1 流程分析…

【命令scp】Linux不同主机之间拷贝指令scp

scp可以在不同主机之间拷贝文件 # 将本地文件拷贝到远程服务器 scp a.tar changxr192.168.100.100:/home/changxr/cxr

Android——热点开关演讲稿

SoftAP打开与关闭 目录 1.三个名词的解释以及关系 Tethering——网络共享&#xff0c;WiFi热点、蓝牙、USB SoftAp——热点(无线接入点)&#xff0c;临时接入点 Hostapd——Hostapd是用于Linux系统的软件&#xff0c;&#xff0c;支持多种无线认证和加密协议&#xff0c;将任…

Visual Studio和BOM历史渊源

今天看文档无意间碰到了微软对编码格式解释&#xff0c;如下链接&#xff1a; Understanding file encoding in VS Code and PowerShell - PowerShell | Microsoft LearnConfigure file encoding in VS Code and PowerShellhttps://learn.microsoft.com/en-us/powershell/scrip…

锁存器(Latch)的产生与特点

Latch 是什么 Latch 其实就是锁存器&#xff0c;是一种在异步电路系统中&#xff0c;对输入信号电平敏感的单元&#xff0c;用来存储信息。锁存器在数据未锁存时&#xff0c;输出端的信号随输入信号变化&#xff0c;就像信号通过一个缓冲器&#xff0c;一旦锁存信号有效&#…

服务器数据恢复—raid5阵列上层XFS文件系统数据恢复案例

服务器存储数据恢复环境&#xff1a; 某品牌CX4-480型号服务器存储&#xff0c;该服务器存储内有一组由20块硬盘组建的raid5磁盘阵列&#xff1b;存储空间分配了1个lun。 服务器存储故障&#xff1a; 工作人员将服务器重装操作系统后&#xff0c;未知原因导致服务器操作系统层…

项目-双人五子棋对战: websocket的讲解与使用 (1)

完整代码见: 邹锦辉个人所有代码: 测试仓库 - Gitee.com 项目介绍 接下来, 我们将制作一个关于双人五子棋的项目, 话不多说先来理清一下需求. 1.用户模块 用户的注册和登录 管理用户的天梯分数, 比赛场数, 获胜场数等信息. 2.匹配模块 依据用户的天梯积分, 实现匹配机制. 3.对…

C语言小例程8/100

题目&#xff1a;输出特殊图案&#xff0c;请在c环境中运行&#xff0c;看一看 程序分析&#xff1a;字符共有256个。不同字符&#xff0c;图形不一样。 #include<stdio.h> int main() {char a176,b219;printf("%c%c%c%c%c\n",b,a,a,a,b);printf("%c%c%c…

前端图片在切换暗黑模式时太亮该怎么办?

通过css中的filter属性来实现&#xff0c;进行图片的色系反转、亮度、对比度调整等 1、invert 反转输入图像&#xff0c;值为 100% 则图像完全反转&#xff0c;值为 0% 则图像无变化 filter: invert(1); 2、blur 给元素应用高斯模糊效果。 filter: blur(5px); 3、brightnes…

stm32 定时器输出比较(OC)与PWM的理解和应用

不积跬步&#xff0c;无以至千里&#xff1b;不积小流&#xff0c;无以成江海。大家好&#xff0c;我是闲鹤&#xff0c;公众号 xxh_zone&#xff0c;十多年开发、架构经验&#xff0c;先后在华为、迅雷服役过&#xff0c;也在高校从事教学3年&#xff1b;目前已创业了7年多&am…

f1c100s 荔枝派 系统移植

一。交叉编译环境配置 1.1下载交叉工具链&#xff1a;https://releases.linaro.org/components/toolchain/binaries/7.2-2017.11/arm-linux-gnueabi/ 1.2解压安装 在home目录下新建 工程目录&#xff1a;mkdir f1c100s_project 将windows下的gcc-linaro-7.2.1-2017.11-x86…

微信小程序毕业设计-预约挂号系统项目开发实战(附源码+论文)

大家好&#xff01;我是程序猿老A&#xff0c;感谢您阅读本文&#xff0c;欢迎一键三连哦。 &#x1f49e;当前专栏&#xff1a;微信小程序毕业设计 精彩专栏推荐&#x1f447;&#x1f3fb;&#x1f447;&#x1f3fb;&#x1f447;&#x1f3fb; &#x1f380; Python毕业设计…

自导自演的39亿大雷?

深夜炸雷&#xff01;39亿存款或无法收回&#xff0c;11万股民懵了&#xff01;A股又出了离谱事件。 4日深夜&#xff0c;ST亿利公告称&#xff0c;公司存放在亿利财务公司的39亿存款已被划分为次级贷款&#xff0c;也就是不良贷款的一种&#xff0c;存在重大可收回性风险。又是…

【第一节】数据结构和算法绪论

目录 一、数据结构的起源与发展 二、什么是数据结构 三、数据的逻辑结构和存储结构 四、数据类型和数据结构 五、算法 六、算法与数据结构的关系 七、算法时间复杂度和空间复杂度 一、数据结构的起源与发展 数据结构的起源可以追溯至1968年。当时&#xff0c;美国的唐欧…

OpenCV的“画笔”功能

类似于画图软件的自由笔刷功能&#xff0c;当按住鼠标左键&#xff0c;在屏幕上画出连续的线条。 定义函数&#xff1a; import cv2 import numpy as np# 初始化参数 drawing False # 鼠标左键按下时为True ix, iy -1, -1 # 鼠标初始位置# 鼠标回调函数 def mouse_paint(…

秀肌肉-海外短剧系统的案例展示

多语种可以选择&#xff0c;分销功能&#xff0c;多种海外支付方式&#xff0c;多种登录模式可供选择&#xff0c;总之你想到的我们都做了&#xff0c;你没想到的我们也都做了

Activity->Activity中动态添加Fragment->Fragment回退栈BackStack

Fragment回退栈 Fragment回退栈用于管理Fragment的导航历史(添加、删除、替换)。每个Activity都有一个包含其所有Fragment的FragmentManager&#xff0c;调用其addToBackStack方法时&#xff0c;这个事务就会被添加到FragmentManager的回退栈中当用户按下返回键时&#xff0c;…

kotlin 调用java的get方法Use of getter method instead of property access syntax

调用警告 Person.class public class Person {private String name;Person(String name) {this.name name.trim();}public String getName() {return name;}public void setName(String name) {this.name name;}public String getFullName() {return name " Wang&quo…