J2SE习题(2)
第四、五周练习题
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)的更多相关文章
- Sharepoint学习笔记—习题系列--70-576习题解析 --索引目录
Sharepoint学习笔记—习题系列--70-576习题解析 为便于查阅,这里整理并列出了70-576习题解析系列的所有问题,有些内容可能会在以后更新. 需要事先申明的是: 1. ...
- 《python核心编》程课后习题——第三章
核心编程课后习题——第三章 3-1 由于Python是动态的,解释性的语言,对象的类型和内存都是运行时确定的,所以无需再使用之前对变量名和变量类型进行申明 3-2原因同上,Python的类型检查是在运 ...
- J2EE,J2SE,J2ME,JDK,SDK,JRE,JVM区别
转自:http://www.metsky.com/archives/547.html 一.J2EE.J2SE.J2ME区别 J2EE——全称Java 2 Enterprise Edition,是Jav ...
- 习题 5: 更多的变量和打印 | 笨办法学 Python
一. 简述 “格式化字符串(format string)” - 每一次你使用 ' ’ 或 " " 把一些文本引用起来,你就建立了一个字符串. 字符串是程序将信息展示给人的方式. ...
- 【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 ...
- J2EE、J2SE、J2ME是什么意思?
本文介绍Java的三大块:J2EE.J2SE和J2ME.J2SE就是Java2的标准版,主要用于桌面应用软件的编程:J2ME主要应用于嵌入是系统开发,如手机和PDA的编程:J2EE是Java2的企业版 ...
- python核心编程(第二版)习题
重新再看一遍python核心编程,把后面的习题都做一下.
- Atitit J2EE平台相关规范--39个 3.J2SE平台相关规范--42个
Atitit J2EE平台相关规范--39个 3.J2SE平台相关规范--42个 2.J2EE平台相关规范--39个5 XML Parsing Specification16 J2EE Conne ...
- SQL简单语句总结习题
创建一个表记员工个人信息: --创建一个表 create table plspl_company_info( empno ) not null, ename ) not null, job ), ma ...
随机推荐
- struts2错误验证
在登陆的时候一般要用错误验证功能.效果如图: 在action层的写法: this.addActionError("username或password错误"); 在jsp页面上取值: ...
- 树莓派玩耍笔记4 -- 树莓派ssh党必备的配置
1. 关闭桌面显示 对于ssh 党.当然不须要系统花费资源在显示上. 所以我们先在 "raspi-conifg" 下选择默认启动为Text 启动(这好像也是Raspbian 的默认 ...
- RegisterHotKey注册热键,然后响应WM_HOTKEY消息
MSDN中的一个示例代码,步骤就是RegisterHotKey注册热键,然后响应WM_HOTKEY消息 @1:这个是系统热键 #include "stdafx.h" int _cd ...
- ps中图层混合模式、多图层叠加、不透明度、填充、图层样式详解
图像领域中,通过进行一下想法的时候,都要通过用ps看下是不是合理,而ps中图层是必用的一个功能,下面详解一下图层有关的叠加原理. 基本顺序是图层从下往上继续, 先计算图层的填充,再计算样式.最后计算不 ...
- [Android学习笔记]View的draw过程学习
View从创建到显示到屏幕需要经历几个过程: measure -> layout -> draw measure过程:计算view所占屏幕大小layout过程:设置view在屏幕的位置dr ...
- expression:stream!=NULL
如果fopen()后返回的是NULL:就不能调用fclose()了: 用fopen()获得的文件句柄不是NULL,那么就需要用fclose()来关闭它.如果是NULL则不需要 null就表示你打开文件 ...
- 15个nosql
1.MongoDB 介绍 MongoDB是一个基于分布式文件存储的数据库.由C++语言编写.主要解决的是海量数据的访问效率问题,为WEB应用提供可扩展的高性能数据存 储解决方案.当数据量达到50GB以 ...
- hibernate 在tomcat7.X 下配置mysql数据源
先说一点题外话,LZ近期学习java web. 今天刚看到hibernate,发如今hibernate配置数据源时网上的资料都太久远了,一般以tomcat 5 版本号下的配置居多.而tomcat 7下 ...
- poj3280(区间dp)
题目连接:http://poj.org/problem?id=3280 题意:给定一个长度为m(m<=2000)的小写字母字符串,在给定组成该字符串的n(n<=26)个字符的添加和删除费用 ...
- angular学习(二):Controller定义总结
上文中总结完了ng-view的应用,将运维后台分开界面到2个,进行到 逻辑Controller处理中,本文将总结一下在项目中Controller都用到了哪些知识: $scope:作用域对象,仅仅是代表 ...