JAVA lab3 第一题

2024-02-23 21:59
文章标签 java 第一 lab3

本文主要是介绍JAVA lab3 第一题,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

在这里插入图片描述
CatTest类

// package dome;import java.awt.*;/*** Title : CatTest.java Description: This class contains the test class for Cat.* Copyright : Copyright (c) 2006 ‐ 2021* * @author Laurissa Tokarchuk* @version 1.0* @author Paula Fonseca* @version 1.4*/
public class CatTest {public static void main(String[] args) {Cat myCat = new Cat();//第二问(2)myCat.setName("Napoleon");myCat.setSpeed(300);System.out.println(myCat.getName()+myCat.getSpeed());// myCat.furType = "short";// myCat.setTail(true);// myCat.setColour(Color.ORANGE);// myCat.speed = 300; // in metres per minute//第三问(3)Cat Temp_cat=new Cat("xiaoming","black", true, Color.ORANGE, 300);//第四问(4)Cat cat1=new Cat("Tom","short",true,Color.BLACK,500);Cat cat2=new Cat("Moggy","long",false,Color.WHITE,400);System.out.println("the"+cat1.getName()+"and"+cat1.getfurType()+"of cat1 and call cat1 to run in a straight line for 10 minutes.");System.out.println("the"+cat2.getName()+"and"+cat2.getfurType()+"of cat2 and call cat2 to run in a straight line for 5 minutes.");//myCat.sleep(5);int numMetres = myCat.run(10, true);System.out.println("I have run " + numMetres + " metres.");}
}

Cat类

// package dome;import java.awt.*;import javax.swing.plaf.basic.BasicBorders.SplitPaneBorder;/*** Title : Cat.java Description: This class contains the definition of a cat.* Copyright : Copyright (c) 2006‐2021* * @author Laurissa Tokarchuk* @version 1.0* @author Paula Fonseca* @version 1.4*/
public class Cat {// Declaration of instance variables.private String name, furType;private boolean tail;private Color colour;private int speed;/*** This is the getters and setters;* */public Cat(){}public Cat(String name,String furType, boolean tail,Color colour, int speed){this.name = name;this.colour=colour;this.tail=tail;this.speed=speed;this.furType=furType;}// public Cat(String name, String furType, boolean tail, Color colour, int speed) {//     this.name = name;//     this.furType = furType;//     this.tail = tail;//     this.colour = colour;//     this.speed = speed;// }/*** */public String getName() {return name;}public void setName(String name) {this.name = name;}/*** * @return*/public String getfurType(){return furType;}public void setfurType(String furType){this.furType=furType;}//public boolean isTail() {return tail;}public void setTail(boolean tail) {this.tail = tail;}////public Color getColour() {return colour;}public void setColour(Color colour) {this.colour = colour;}//public int getSpeed() {return speed;}public void setSpeed(int speed){this.speed=speed;}/*** This is the sleep method for the cat. It dictates the number of minutes the* cat sleeps.* * @param duration The number of minutes to sleep.*/public void sleep(int duration) {System.out.println("I am sleeping for " + duration + " minutes.");}/*** This method allows the cat to run. The distance (in a straight line) the cat* runs is dependent on how long the cat runs and whether or not it is running* in a zigzag.* * @param duration The number of minutes to run.* @param zigzag   Whether to run in a zigzag pattern.* @return int Number of metres ran.*/public int run(int duration, boolean zigzag) {System.out.println("I am running " + (zigzag ? "in a zigzag" : "straight") + " for " + duration + " minutes.");int distanceRun = duration * speed; // assuming speed is metres per minuteif (zigzag) {/** When in zigzag, distance is 1/3 of what it would have been if the cat was* going straight.*/return distanceRun / 3;} elsereturn distanceRun;}}

这篇关于JAVA lab3 第一题的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/740060

相关文章

java如何解压zip压缩包

《java如何解压zip压缩包》:本文主要介绍java如何解压zip压缩包问题,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录Java解压zip压缩包实例代码结果如下总结java解压zip压缩包坐在旁边的小伙伴问我怎么用 java 将服务器上的压缩文件解压出来,

SpringBoot中SM2公钥加密、私钥解密的实现示例详解

《SpringBoot中SM2公钥加密、私钥解密的实现示例详解》本文介绍了如何在SpringBoot项目中实现SM2公钥加密和私钥解密的功能,通过使用Hutool库和BouncyCastle依赖,简化... 目录一、前言1、加密信息(示例)2、加密结果(示例)二、实现代码1、yml文件配置2、创建SM2工具

Spring WebFlux 与 WebClient 使用指南及最佳实践

《SpringWebFlux与WebClient使用指南及最佳实践》WebClient是SpringWebFlux模块提供的非阻塞、响应式HTTP客户端,基于ProjectReactor实现,... 目录Spring WebFlux 与 WebClient 使用指南1. WebClient 概述2. 核心依

Spring Boot @RestControllerAdvice全局异常处理最佳实践

《SpringBoot@RestControllerAdvice全局异常处理最佳实践》本文详解SpringBoot中通过@RestControllerAdvice实现全局异常处理,强调代码复用、统... 目录前言一、为什么要使用全局异常处理?二、核心注解解析1. @RestControllerAdvice2

Spring IoC 容器的使用详解(最新整理)

《SpringIoC容器的使用详解(最新整理)》文章介绍了Spring框架中的应用分层思想与IoC容器原理,通过分层解耦业务逻辑、数据访问等模块,IoC容器利用@Component注解管理Bean... 目录1. 应用分层2. IoC 的介绍3. IoC 容器的使用3.1. bean 的存储3.2. 方法注

Spring事务传播机制最佳实践

《Spring事务传播机制最佳实践》Spring的事务传播机制为我们提供了优雅的解决方案,本文将带您深入理解这一机制,掌握不同场景下的最佳实践,感兴趣的朋友一起看看吧... 目录1. 什么是事务传播行为2. Spring支持的七种事务传播行为2.1 REQUIRED(默认)2.2 SUPPORTS2

怎样通过分析GC日志来定位Java进程的内存问题

《怎样通过分析GC日志来定位Java进程的内存问题》:本文主要介绍怎样通过分析GC日志来定位Java进程的内存问题,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录一、GC 日志基础配置1. 启用详细 GC 日志2. 不同收集器的日志格式二、关键指标与分析维度1.

Java进程异常故障定位及排查过程

《Java进程异常故障定位及排查过程》:本文主要介绍Java进程异常故障定位及排查过程,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录一、故障发现与初步判断1. 监控系统告警2. 日志初步分析二、核心排查工具与步骤1. 进程状态检查2. CPU 飙升问题3. 内存

java中新生代和老生代的关系说明

《java中新生代和老生代的关系说明》:本文主要介绍java中新生代和老生代的关系说明,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录一、内存区域划分新生代老年代二、对象生命周期与晋升流程三、新生代与老年代的协作机制1. 跨代引用处理2. 动态年龄判定3. 空间分

Java设计模式---迭代器模式(Iterator)解读

《Java设计模式---迭代器模式(Iterator)解读》:本文主要介绍Java设计模式---迭代器模式(Iterator),具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,... 目录1、迭代器(Iterator)1.1、结构1.2、常用方法1.3、本质1、解耦集合与遍历逻辑2、统一