第四、五周练习题

1.a. Define a class called BlogEntry that could be used to store an entry for a 

Weblog. The class should have instance variables to store the poster’s 

username, text of the entry, and the date of the entry using the Date class from 

this chapter. Add a constructor that allows the user of the class to set all 

instance variables. Also add a method, DisplayEntry , that outputs all of the 

instance variables, and another method called getSummary that returns the 

first 10 words from the text (or the entire text if it is less than 10 words). Test 

your class from your main method. 

源代码:

package cn.wenhao.www.exercise1;

import java.util.Date;

/**
*类的作用:Weblog实体类
*
*@author 一叶扁舟
*@version 1.0
*@创建时间: 2014年10月4日 下午8:21:07
*/
public class BlogEntry {
//用户的名字
private String userName;
//用户发表的日志的内容
private String text;
//用户发表日志的日期
private String date; //无參数的构造函数
public BlogEntry(){} /**
* @param userName username
* @param text 日志文本
* @param date 日志发表的日期
*/
public BlogEntry(String userName, String text, String date) {
super();
this.userName = userName;
this.text = text;
this.date = date;
} public String getUserName() {
return userName;
} public void setUserName(String userName) {
this.userName = userName;
} public String getText() {
return text;
} public void setText(String text) {
this.text = text;
} public String getDate() {
return date;
} public void setDate(String string) {
this.date = string;
} public String toString() {
System.out.println("作者:" + userName + "\n 日志内容:\n" + text + "\n日志发表时间:"
+ date);
return null;
} //日志的概要
public String getSummary(){
String str = null; if(text.length() <= 10){
str = text;
}else{//截取text字符串的前十个字符
str = text.substring(0, 10);
}
return str;
} }
package cn.wenhao.www.exercise1;

import java.text.SimpleDateFormat;
import java.util.Date; /**
*类的作用:用来測试BlogEntry实体类
*
*
*@author 一叶扁舟
*@version 1.0
*@创建时间: 2014年10月4日 下午8:24:39
*/
public class TestBlogEntry { public static void main(String[] args) {
BlogEntry blog = new BlogEntry();
blog.setUserName("一叶扁舟");
SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");//设置日期格式
blog.setDate(df.format(new Date()));
blog.setText("一叶扁舟,今天心情非常好,尽管有点累,可是过的非常充实……");
System.out.println("日志概要:"+blog.getSummary());
blog.toString();
} }

測试效果图:





2.b. Define a class called Counter whose objects count things. An object of 

this class records a count that is a nonnegative integer. Include methods to set 

the counter to 0, to increase the count by 1, and to decrease the count by 1. Be 

sure that no method allows the value of the counter to become negative. 

Include an accessor method that returns the current count value and a method 

that outputs the count to the screen. There should be no input method or other 

mutator methods. The only method that can set the counter is the one that sets 

it to 0. Also, include a toString method and an equals method. Write a program 

(or programs) to test all the methods in your class definition. 

源代码:

package cn.wenhao.www.exercise2;

/**
* 类的作用:用来统计数据的工具类
*
*
* @author 一叶扁舟
* @version 1.0
* @创建时间: 2014年10月4日 下午10:17:43
*/
public class Counter { private int count = 0; // 重置方法:数据清零
public void reSet() {
count = 0;
} @Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + count;
return result;
} // 推断数据是否相等
public boolean equals(int obj) { return this.count == obj;
} @Override
public String toString() {
return "count=" + count;
} // 计数器自己主动添加1
public void increase() {
count++;
} // 计数器自己主动减1
public void decrease() {
count--;
// 保证数据不能为负数
if (count < 0)
count = 0;
} // 获取当前值
public int currentValue() {
return count;
} }
package cn.wenhao.www.exercise2;

/**
*类的作用:測试Counter这个类
*
*
*@author 一叶扁舟
*@version 1.0
*@创建时间: 2014年10月4日 下午10:48:08
*/
public class TestCount { public static void main(String[] args) {
Counter counter = new Counter(); //计数器添加1;
counter.increase();
counter.increase();
System.out.println("当前值:"+counter.currentValue());
counter.decrease();
System.out.println("当前值:"+counter.currentValue()); boolean flag = counter.equals(1);
System.out.println("是否相等:"+flag);
//数据清零
counter.reSet();
System.out.println(counter.toString()); } }

代码測试效果图:



3.c. Write a Temperature class that has two instance variables: a temperature 

value (a floating-point number) and a character for the scale, either C for 

Celsius or F for Fahrenheit. The class should have four constructor methods: 

one for each instance variable (assume zero degrees if no value is specified and 

Celsius if no scale is specified), one with two parameters for the two instance 

variables, and a no-argument constructor (set to zero degrees Celsius). 

 

Include the following: 

 (1)  two  accessor  methods  to  return  the  temperature—one  to  return  the

degrees Celsius, the other to return the degrees Fahrenheit—use the following 

formulas to write the two methods, and round to the nearest tenth of a degree: 

      DegreesC = 5*(degreesF - 32)/9 

      DegreesF = (9*degreesC)/5 + 32; 

(2)  three mutator methods: one to set the value, one to set the scale ( F or C ), 

andone to set both;  

 

(3)  three comparison methods: an equals method to test whether 

two temperatures are equal, one method to test whether one temperature is 

greaterthan another, and one method to test whether one temperature is less 

than another (note that a Celsius temperature can be equal to a Fahrenheit 

temperature as indicated by the above formulas);  

 

(4) a suitable toString method. Then write a driver program (or programs) that 

tests all the methods. Be sure to use each of the constructors, to include at least 

one true and one false case for each of the comparison methods, and to test at 

least the following temperature equalities: 

0.0     degrees C = 32.0 degrees F 

–40.0  degrees C = –40.0 degrees F 

100.0  degrees C = 212.0 degrees F.  

源代码:

package cn.wenhao.www.exercise3;

/**
* 类的作用:摄氏度(C)、华氏摄氏度(F)的转换和比較
*
*
* @author 一叶扁舟
* @version 1.0
* @创建时间: 2014年10月8日 上午10:02:08
*/
public class Temperature {
// 温度的数值
private float value;
// 温度的单位(C/F)
private char unit; // 无參数的构造函数,设置默认值
public Temperature() {
this.value = 0;
this.unit = 'C'; } /**
* @param value
* 温度的数值
*/
public Temperature(float value) {
this.value = value;
} /**
* @param unit
* 温度的单位
*/
public Temperature(char unit) {
this.unit = unit;
} /**
* @param value
* 温度的数值
* @param unit
* 温度的单位
*/
public Temperature(float value, char unit) {
this.unit = unit;
this.value = value;
} /**
* @return 摄氏度的数值
*/
public float getDegreesC() {
float temp; // 说明单位是C,不用转换直接返回
if (this.unit == 'C') {
temp = this.value;
} else {
// 反之说明是华氏摄氏度,须要依据公式进行转换 DegreesC = 5*(degreesF - 32)/9
temp = 5 * (this.value - 32) / 9;
}
return temp;
} /**
* @return 华氏摄氏度
*/
public float getDegreesF() {
float temp;
// 说明单位是F,不用转换直接返回
if (this.unit == 'F') {
temp = this.value;
} else {
// 反之说明是摄氏度,须要依据公式进行转换 DegreesF = (9*degreesC)/5 + 32;
temp = (this.value * 9) / 5 + 32;
}
return temp;
} // 设置数据
public void setValue(float value) {
this.value = value;
} public void setUnit(char unit) {
this.unit = unit;
} public void setBoth(float value, char unit) {
this.value = value;
this.unit = unit;
} // 三个比較的方法 public boolean equals(Temperature temperature) {
// 首先要推断是否单位一致,单位一直直接比較数值大小
if (this.unit == temperature.unit) {
if (this.value == temperature.value) {
return true;
} else {
return false;
}
} else {// 单位不一致,先将单位转换一致再进行比較 if (this.getDegreesC() == temperature.getDegreesC()) {
return true;
} else {
return false;
} }
} // 小于方法
public boolean lessThan(Temperature temperature) {
// 直接统一单位(摄氏度),然后直接进行比較
if (this.getDegreesC() < temperature.getDegreesC()) {
return true;
} else {
return false;
}
} // 大于方法
public boolean moreThan(Temperature temperature) {
// 直接统一单位(摄氏度),然后直接进行比較
if (this.getDegreesC() > temperature.getDegreesC()) {
return true;
} else {
return false;
}
} @Override
public String toString() {
// return "摄氏度为:" + this.getDegreesC() + "C\t"
// + "华氏摄氏度为:" + this.getDegreesF()
// + "F"; return "温度为:"+this.value+" degrees "+this.unit+" ";
} }





package cn.wenhao.www.exercise3;

import org.junit.Test;

/**
*类的作用:測试Temperature这个类
*
*
*@author 一叶扁舟
*@version 1.0
*@创建时间: 2014年10月8日 上午10:52:22
*/
public class TestTemperature {
@Test
public void testTemperature() throws Exception {
//创建四个构造函数
/*
* 0.0 degrees C = 32.0 degrees F
–40.0 degrees C = –40.0 degrees F
100.0 degrees C = 212.0 degrees F.
*/
Temperature temperature1 = new Temperature();
Temperature temperature2 = new Temperature(32.0f,'F'); Temperature temperature3= new Temperature(-40.0f);
Temperature temperature4= new Temperature('F'); Temperature temperature5 = new Temperature(100.0f,'C');
Temperature temperature6 = new Temperature(212.0f,'F'); System.out.println("温度的比較");
System.out.println(temperature1.toString()+"?="+temperature2.toString()+
temperature2.equals(temperature1));
System.out.println(temperature1.toString()+"的华氏摄氏度为:"+temperature1.getDegreesF()+"F"); temperature3.setUnit('C');
System.err.println(temperature3.toString()+"more"+temperature1.toString()+temperature3.moreThan(temperature1));
temperature4.setValue(-40.0f);
System.out.println(temperature3.toString()+"?="+temperature4.toString()+
temperature2.equals(temperature1)); System.out.println(temperature5.toString()+"?="+temperature6.toString()+
temperature2.equals(temperature1));
//又一次设置temperature1
temperature1.setBoth(102, 'C');
System.err.println(temperature1.toString()+"more"+temperature5.toString()+temperature1.lessThan(temperature5));
System.err.println(temperature6.toString()+"?="+temperature5.toString()+temperature5.equals(temperature6));
} }

代码效果图:



4.d. Create a class named Pizza that stores information about a single pizza. It 

should contain the following: 

  Private  instance  variables  to  store  the  size  of  the  pizza  (either  small, 

medium,or large), the number of cheese toppings, the number of pepperoni 

toppings, and the number of ham toppings. 

  Constructor(s) that set all of the instance variables. 

  Public methods to get and set the instance variables. 

  A public method named calcCost( ) that returns a double that is the cost 

of the pizza. 

Pizza cost is determined by: 

Small: $10 + $2 per topping 

Medium: $12 + $2 per topping 

Large: $14 + $2 per topping 

 

• A public method named getDescription( ) that returns a String containing 

the pizza size, quantity of each topping, and the pizza cost as calculated 

by calcCost( ) . 

Write test code to create several pizzas and output their descriptions. For 

example, a large pizza with one cheese, one pepperoni and two ham toppings 



代码:

package cn.wenhao.www.exercise4;

import org.omg.CORBA.PUBLIC_MEMBER;

/**
*类的作用:比萨饼的计算
*
*
*@author 一叶扁舟
*@version 1.0
*@创建时间: 2014年10月8日 下午12:28:46
*/
public class Pizza {
//比萨饼的大小
private Size size;
//cheese的数量
private int numCheese;
//pepperoni的数量
private int numPepperoni;
//ham的数量
private int numHam;
public Pizza(){
this.size = Size.small;
}
/**
* @param size
* @param numCheese
* @param numPepperoni
* @param numHam
*/
public Pizza(Size size, int numCheese, int numPepperoni, int numHam) {
this.size = size;
this.numCheese = numCheese;
this.numPepperoni = numPepperoni;
this.numHam = numHam;
}
public Size getSize() {
return size;
}
public void setSize(Size size) {
this.size = size;
}
public int getNumCheese() {
return numCheese;
}
public void setNumCheese(int numCheese) {
this.numCheese = numCheese;
}
public int getNumPepperoni() {
return numPepperoni;
}
public void setNumPepperoni(int numPepperoni) {
this.numPepperoni = numPepperoni;
}
public int getNumHam() {
return numHam;
}
public void setNumHam(int numHam) {
this.numHam = numHam;
} //计算买一个比萨饼的的价钱
public int calcCost(){
int sum =0;
int costSize = 0;
if(Size.small == size){
costSize = 10;
}else if (size == Size.meium) {
costSize = 12;
}else{
costSize = 14;
}
sum = costSize + (this.numCheese + this.numHam + this.numPepperoni )* 2;
return sum; } public String getDescription(){
return "size:"+ size + "\nnumCheese:" +this.numCheese+"\nnumHam:"+this.numHam+"\nnumPepperoni:"+this.numPepperoni+"\n总价:"+this.calcCost()+"$";
} }

package cn.wenhao.www.exercise4;

/**
*类的作用:比萨饼的大小表示形式:小,中,大
*
*
*@author 一叶扁舟
*@version 1.0
*@创建时间: 2014年10月8日 下午12:40:34
*/
public enum Size {
small,meium,large
}

package cn.wenhao.www.exercise4;

import org.junit.Test;

/**
*类的作用:測试pizza类
*
*
*@author 一叶扁舟
*@version 1.0
*@创建时间: 2014年10月8日 下午1:11:02
*/
public class TestPizza { @Test
public void testPizza() {
Pizza pizza1 = new Pizza(Size.small, 2, 4, 0);
System.out.println(pizza1.getDescription());
System.out.println("----------------------------------"); pizza1.setSize(Size.large);
pizza1.setNumPepperoni(1);
pizza1.setNumCheese(3);
pizza1.setNumHam(2);
System.out.println(pizza1.getDescription());
System.out.println("----------------------------------"); } @Test
public void testPizza2() {
Pizza pizza = new Pizza();
System.out.println(pizza.getDescription()); } }

代码測试效果图:

J2SE习题(2)的更多相关文章

  1. Sharepoint学习笔记—习题系列--70-576习题解析 --索引目录

        Sharepoint学习笔记—习题系列--70-576习题解析  为便于查阅,这里整理并列出了70-576习题解析系列的所有问题,有些内容可能会在以后更新. 需要事先申明的是:     1. ...

  2. 《python核心编》程课后习题——第三章

    核心编程课后习题——第三章 3-1 由于Python是动态的,解释性的语言,对象的类型和内存都是运行时确定的,所以无需再使用之前对变量名和变量类型进行申明 3-2原因同上,Python的类型检查是在运 ...

  3. J2EE,J2SE,J2ME,JDK,SDK,JRE,JVM区别

    转自:http://www.metsky.com/archives/547.html 一.J2EE.J2SE.J2ME区别 J2EE——全称Java 2 Enterprise Edition,是Jav ...

  4. 习题 5: 更多的变量和打印 | 笨办法学 Python

    一. 简述 “格式化字符串(format string)” -  每一次你使用 ' ’ 或 " " 把一些文本引用起来,你就建立了一个字符串. 字符串是程序将信息展示给人的方式. ...

  5. 【WebGoat习题解析】Parameter Tampering->Bypass HTML Field Restrictions

    The form below uses HTML form field restrictions. In order to pass this lesson, submit the form with ...

  6. J2EE、J2SE、J2ME是什么意思?

    本文介绍Java的三大块:J2EE.J2SE和J2ME.J2SE就是Java2的标准版,主要用于桌面应用软件的编程:J2ME主要应用于嵌入是系统开发,如手机和PDA的编程:J2EE是Java2的企业版 ...

  7. python核心编程(第二版)习题

    重新再看一遍python核心编程,把后面的习题都做一下.

  8. Atitit  J2EE平台相关规范--39个  3.J2SE平台相关规范--42个

    Atitit  J2EE平台相关规范--39个  3.J2SE平台相关规范--42个 2.J2EE平台相关规范--39个5 XML Parsing Specification16 J2EE Conne ...

  9. SQL简单语句总结习题

    创建一个表记员工个人信息: --创建一个表 create table plspl_company_info( empno ) not null, ename ) not null, job ), ma ...

随机推荐

  1. (一)----使用HttpClient发送HTTP请求(通过get方法获取数据)

    (一)----使用HttpClient发送HTTP请求(通过get方法获取数据) 一.HTTP协议初探: HTTP(Hypertext Transfer Protocol)中文 “超文本传输协议”,是 ...

  2. Objective-C中经常使用的结构体NSRange,NSPoint,NSSize(CGSize),NSRect

    Objective-C中经常使用的结构体NSRange,NSPoint,NSSize(CGSize),NSRect 1   NSRange NSRange 的原型为 typedef struct _N ...

  3. Opencv246+vs2012生成不依赖编译环境的exe文件

    我们都知道,vs2012编译项目有两个版本号:Debug和Release,这里我们在Release下生成exe文件,为什么要在Release以下生成呢,原因是你在Debug模式下生成的exe须要vs2 ...

  4. 不知道的JavaScript

    你不知道的JavaScript上卷笔记 前言 You don't know JavaScript是github上一个系列文章  初看到这一标题的时候,感觉怎么老外也搞标题党,用这种冲突性比较强的题目吸 ...

  5. mongodb中的排序和索引快速学习

    在mongodb中,排序和索引其实都是十分容易的,先来小结下排序: 1 先插入些数据    db.SortTest.insert( { name : "Denis", age : ...

  6. hdu5001(概率dp)

    题目连接:http://acm.hdu.edu.cn/showproblem.php?pid=5001 题意:一个人随即从一个点出发,到达邻接点的概率相同,求出走d步都不会到达1~n点的每一点i的概率 ...

  7. Java PreparedStatement

    PreparedStatement是一个用于运行sql语句的标准接口的对象.它是继承与Statement.依据里氏代换原则.用Statement运行的语句,一定能够用Prepared替换了.那么他们之 ...

  8. eval、json.parse()的介绍和使用注意点

    原文:eval.json.parse()的介绍和使用注意点 eval和json.parse的使用 eval:来源于官网 定义和用法 eval() 函数可计算某个字符串,并执行其中的的 JavaScri ...

  9. Cocos2d-x精华教程汇总(第三期) cocos2d-x最新离线API文档下载(最新版3.6更新。。。)

    其实使用doxygen在Cocos2d-x引擎的doc目录下可以生成离线文档,但是可能每个人为了生成一个离线文档去安装甚至编译doxygen毕竟麻烦,而且现有的doxygen无法生成多语言版本的离线文 ...

  10. LNK1207: incompatible PDB format in********

    LNK1207: incompatible PDB format in******** VC中错误:LINK : fatal error LNK1207: incompatible PDB forma ...