1.在上週完成的思惟導圖基礎上,補充本週的學習內容,對Java面向對象編程的知識點作一個全面的總結。java
2.汽車租賃公司,出租汽車種類有客車、貨車和皮卡三種,每輛汽車除了具備編號、名稱、租金三個基本屬性以外,客車有載客量,貨車有載貨量,皮卡則同時具備載客量和載貨量。用面向對象編程思想分析上述問題,將其表示成合適的類、抽象類或接口,說明設計思路並畫出類圖。
設計思路:設計一個汽車A接口,有編號、名稱、租金、載客量基本屬性。設計一個汽車B接口,有編號、名稱、租金、載貨量基本屬性。設計一個客車類,繼承汽車A接口,設計一個貨車類,繼承汽車B接口,設計一個皮卡類,繼承汽車A接口和汽車B接口。
類圖以下
git
3.閱讀下面程序,分析代碼是否能編譯經過,若是不能,說明緣由,並進行改正。若是能,列出運行結果正則表達式
interface Animal{ void breathe(); void run(); void eat(); } class Dog implements Animal{ public void breathe(){ System.out.println("I'm breathing"); } void eat(){ System.out.println("I'm eating"); } } public class Test{ public static void main(String[] args){ Dog dog = new Dog(); dog.breathe(); dog.eat(); } }
不能。非抽象類必須實現藉口中的全部方法。接口中的方法public的,類中的方法也是public的。
修改編程
interface Animal{ void breathe(); void run(); void eat(); } class Dog implements Animal{ public void breathe(){ System.out.println("I'm breathing"); } public void eat(){ System.out.println("I'm eating"); } public void run(){ } } public class Test{ public static void main(String[] args){ Dog dog = new Dog(); dog.breathe(); dog.eat(); } }
運行結果設計模式
I'm breathing I'm eating
4.運行下面的程序數組
import java.util.Arrays; public class Test{ public static void main(String[] args){ String[] fruits = {"peach","banana","orange","apple"}; Arrays.sort(fruits); for(int i = 0;i < fruits.length;i++) { System.out.println(fruits[i]); } } }
程序輸出的結果是升序排序的。查看String
類的源碼,說明是如何實現的?若是如今但願對輸出的結果進行降序排序,該如何處理?修改上述代碼,實現按照字母順序逆序排序
String源碼
app
將輸出改成倒着輸出。修改以下學習
import java.util.Arrays; public class Txt{ public static void main(String[] args){ String[] fruits = {"peach","banana","orange","apple"}; Arrays.sort(fruits); for(int i = fruits.length-1;i>=0;i--) { System.out.println(fruits[i]); } } }
1.樂器測試
2.公司ui
3.寵物商店
實驗問題分析:
問題1:價錢沒有被返回
prints(p.search(str),str,strs);
public int[] search(String str[]){ int p[] =null; int count =0; for(int i=0;i<str.length;i++){ if(this.pets[i]!=null){ if(str[i].equals(this.pets[i].getPin())){ count++; } } } p=new int[count]; for(int i=0;i<str.length;i++){ if(this.pets[i]!=null){ if(str[i].equals(this.pets[i].getPin())){ p[i]=this.pets[i].getPrice(); } } } return p; }
緣由:進行比較應該用兩個循環,不然無法比
解決方案:
public int[] search(String str[]){
int p[] =null;
int count =0;
for(int i=0;i<str.length;i++){
if(str[i]!=null){
for(int j=0;j<this.pets.length;j++){
if(this.pets[j]!=null){
if(str[i].equals(this.pets[j].getPin())){
count++;
}
}
}
}
}
p=new int[count];
for(int i=0;i<str.length;i++){
if(str[i]!=null){
for(int j=0;j<this.pets.length;j++){
if(this.pets[j]!=null){
if(str[i].equals(this.pets[j].getPin())){
p[i]=this.pets[j].getPrice();
}
}
}
}
}
return p;
}
代碼行數(新增/累積) | 學習時間(新增/累積) | 本週學習內容 | |
---|---|---|---|
目標 | 5000行 | 300小時 | |
第2-4周 | 100/100 | 20/20 | 學習了數組和方法 |
第5周 | 200/300 | 30/50 | 學習了String類和StringBuffer類 |
第6周 | 800/1100 | 40/90 | 學習了this、static關鍵字,Singleton模式 |
第八週 | 1200/1700 | 60/110 | 繼承和多態,抽象方法 |
第九周 | 1500/2000 | 70/120 | 藉口、工廠設計模式、包裝類、匿名內部類、日期類、正則表達式 |