做業_java基礎第七天_匿名內部類、異常、包和jar

  1. 利用白富美接口案例,土豪徵婚使用匿名內部類對象實現。java

2.定義三角形類Trianle,裏面包含三個int類型屬性,分別表示三條邊的長度,多線程

  構造三角形對象時,任意兩邊之和是否大於第三邊,如若不成立,拋出自定義異常。ide

3.Person類中增長birthday屬性,對setBirthday(int ,int , int )方法進行異常處理,函數

  要求年有效、月有效、日有效、年月日指定的具體日期有效,對不一樣狀況分別拋出不一樣的異常。this

4.將類定義到指定的包下。com.it18zhang,編譯以後,打成jar文件。spa

5.相互之間使用jar包,放置cp下,對class進行重用。線程

6.設計程序,考查修飾符。public -> protected -> default -> private(選作題)設計

7.預習多線程。orm

---------------------------------------------------------------------
對象

【--------------------------------做業1-------------------------------------------】

package 做業;


//白

interface IWhite {

public void white();

}


//富

interface IRich {

public void rich();

}


//美

interface IBeauti {

public void beauti();

}


//定義新的接口,繼承三個接口

interface IWRB extends IWhite, IRich, IBeauti {

}


//土豪類

class RichMan {

public void marry(IWhite i) {

System.out.println("白好");

i.white();

}


public void marry(IRich i) {

System.out.println("富很好");

i.rich();

}


public void marry(IBeauti i) {

System.out.println("美很是好");

i.beauti();

}


public void marry(IWRB i) {

System.out.println("白富美最好不過");

i.white();

i.rich();

i.beauti();

}

}


class MarriyDemo {

public static void main(String[] args) {

RichMan rm = new RichMan();

//匿名內部類對象

rm.marry(new IWhite() {

public void white() {

System.out.println("我很白");

}

});//匿名內部類對象


//匿名內部類對象

rm.marry(new IRich() {

public void rich() {

System.out.println("我很富");

}

});//匿名內部類對象


//匿名內部類對象

rm.marry(new IBeauti() {

public void beauti() {

System.out.println("我很美");

}

});//匿名內部類對象



rm.marry(new IWRB() {//匿名內部類對象,把3個抽象方法實現了

public void white() {

System.out.print("我白");

}


public void rich() {

System.out.print("我富");

}


public void beauti() {

System.out.println("我美");

}

});//匿名內部類對象,把3個抽象方法實現了

}

}


【--------------------------------做業二-------------------------------------------】

class EdgeTooSmallException extends Exception { // 這個異常是用來判斷邊小於或等於0的

//成員變量

private String info;

//無參構造

public EdgeTooSmallException() {

}

//帶參構造

public EdgeTooSmallException(String info) {

this.info = info;

}

//getter方法

public String getInfo() {

return info;

}

//setter方法,//經過構造函數定義異常信息

public void setEdgeInfo(String info) {

this.info = info;

}

}


class EdgeNotMatchException extends Exception { // 這個異常是用來判斷三角形的

//成員變量

private String info;

//無參構造

public EdgeNotMatchException() {


}

//帶參構造

public EdgeNotMatchException(String info) {

this.info = info;

}

//getter方法

public String getInfo() {

return info;

}

//setter方法,//經過構造函數定義異常信息

public void setEdgeNotMatchException(String info) {

this.info = info;

}

}


//三角形類

class Triangle {

// 三條邊

private int edgea;

private int edgeb;

private int edgec;


// edgea的get/set方法

public int getEdgea() {//判斷a邊

return edgea;

}


public void setEdgea(int edgea) throws EdgeTooSmallException {//方法申明中拋出異常

if (edgea > 0) {

this.edgea = edgea;

} else {

throw new EdgeTooSmallException("邊長A不能小於或等於0");// 這個異常是用來判斷邊小於或等於0的

}

}


// edgeb的get/set方法

public int getEdgeb() {//判斷b邊

return edgeb;

}


public void setEdgeb(int edgeb) throws EdgeTooSmallException {

if (edgeb > 0) {

this.edgeb = edgeb;

} else {

throw new EdgeTooSmallException("邊長B不能小於或等於0");

}

}


// edgec的get/set方法

public int getEdgec() {//判斷c邊

return edgec;

}


public void setEdgec(int edgec) throws EdgeTooSmallException {

if (edgec > 0) {

this.edgec = edgec;

} else {

throw new EdgeTooSmallException("邊長C不能小於或等於0");//拋出異常對象

}

}


// 判斷是否是三角形

public static void Checking(int x, int y, int z) throws EdgeNotMatchException {//方法申明中拋出異常

if (x + y <= z || x + z <= y || y + z <= x) {


throw new EdgeNotMatchException("這不是三角形");//主要是這裏拋出自定義的異常對象,而後方法申明拋出或try-catch圍繞

} else {

System.out.println("這是個三角形");

}

}

}


class TriangleDemo2 {

public static void main(String[] args) {

System.out.println(new EdgeNotMatchException().getInfo());

//System.out.println(e.getInfo());//打印信息,都沒用到setInfo(),打出來是null

// 構造三角形

Triangle t1 = new Triangle();


// 設定三條邊,找出異常

try {

t1.setEdgea(4);//a邊4

t1.setEdgeb(5);//b邊5

t1.setEdgec(3);//c邊3

t1.Checking(t1.getEdgea(), t1.getEdgeb(), t1.getEdgec());//判斷是否是三角形方法

} catch (EdgeTooSmallException e) {//構造的對象,打印的信息和構造那裏有關係

System.out.println(e.getInfo());//打印信息,都沒用到setInfo(),打出來是null

System.exit(-1);

} catch (EdgeNotMatchException e) {

System.out.println(e.getInfo());

System.exit(-1);

}


System.out.println("邊長爲" + t1.getEdgea() + "," + t1.getEdgeb() + "," + t1.getEdgec());


}

}

【--------------------------------做業3-------------------------------------------】

package 做業;


/**

 * Person類中增長birthday屬性,對setBirthday(int ,int , int )方法進行異常處理,

 * 要求年有效、月有效、日有效、年月日指定的具體日期有效,對不一樣狀況分別拋出不一樣的異常。

 * 

 */

public class Brithday3 {

private String birthday;


public String getBirthday() {

return birthday;

}


public void setBirthday(int year, int month, int date) throws InvalidParamExcetion {

// 判斷年份

if (year < 1900 || year > 2016) {

throw new InvalidParamExcetion("年份不合適,請傳入1900年到2016年之間的年份");

}

// 判斷月份

if (month <= 0 || month > 12) {

throw new InvalidParamExcetion("月份不合適,不存在" + month + "月");

}

// 判斷日期

if (date > 31 || date <= 0) {

throw new InvalidParamExcetion("日期不合適,不存在" + date + "日");

}

boolean isThirdOne = date == 1 || date == 3 || date == 5 || date == 7 || date == 8 || date == 10 || date == 12;

if (!isThirdOne && date == 31) {

throw new InvalidParamExcetion("日期不合適," + month + "月不存在" + date + "日");

}

if (month == 2 && date > 29) {

throw new InvalidParamExcetion("日期不合適,2月不存在" + date + "日");

}

if (year % 4 != 0 && month == 2 && date == 29) {

throw new InvalidParamExcetion("日期不合適," + year + "不是閏年,因此2月不存在" + date + "日");

}


System.out.println("生日爲:" + year + "年" + month + "月  " + date + "日 ");

}


public static void main(String[] args) throws InvalidParamExcetion {

Brithday3 person = new Brithday3();

try {

person.setBirthday(2015, 12, 5);

person.setBirthday(2016, 2, 29);

person.setBirthday(2015, 2, 29);

// 由於上一句異常了,因此不會執行這一句

person.setBirthday(2015, 3, 5);

} catch (InvalidParamExcetion e) {

}


}


}


/**

 * 非法參數異常

 * 

 */

class InvalidParamExcetion extends Exception {

public InvalidParamExcetion(String msg) {

super(msg);

System.out.println(msg);

}


}

【--------------------------------做業4------------------------------------------】

4.將類定義到指定的包下。com.it18zhang,編譯以後,打成jar文件。

//打包java庫文件。

//[將類路徑下的類打成jar文件]

jar cvf myjar.jar -C classes/ .

jar cvfe myjar.jar com.it18zhang.A -C classes/ .//e指定的入口點.

//

[使用java -jar參數來運行程序]

java -jar myjar.jar//執行jar文件

java -jar myjar.jar com.it18zhang.A//執行jar文件指定入口點。

相關文章
相關標籤/搜索