《Java技術》第六次做業

(一)學習總結

1.用思惟導圖對本週的學習內容進行總結。
java

2.當程序中出現異常時,JVM會依據方法調用順序依次查找有關的錯誤處理程序。可以使用printStackTrace 和getMessage方法瞭解異常發生的狀況。閱讀下面的程序,說明printStackTrace方法和getMessage 方法的輸出結果分別是什麼?並分析異常的傳播過程。git

public class PrintExceptionStack {
    public static void main( String args[] )
    {
         try {
             method1();
          } catch ( Exception e ) {
             System.err.println( e.getMessage() + "\n" );
             e.printStackTrace();
          }
    }
   public static void method1() throws Exception
   {
      method2();
   }
   public static void method2() throws Exception
   {
      method3();
   }
   public static void method3() throws Exception
   {
      throw new Exception( "Exception thrown in method3" );
   }
}
  • printStackTrace方法的輸出結果是:
  • at PrintExceptionStack.method3(PrintExceptionStack.java:21)
    at PrintExceptionStack.method2(PrintExceptionStack.java:17)
    at PrintExceptionStack.method1(PrintExceptionStack.java:13)
    at PrintExceptionStack.main(PrintExceptionStack.java:5)
  • getMessage方法的輸出結果是:正則表達式

    Exception thrown in method3學習

將try語句中寫可能出現的異常代碼catch來捕獲異常,若try語句中產生了異常,則程序會自動跳到catch找到匹配的類型進行相應的處理this

3.閱讀下面程序,分析程序的運行結果,解釋產生錯誤的緣由,若是刪除的是books集合的最後一個對象,運行的結果又是什麼?你能對此做出解釋嗎?若是在遍歷時非要刪除集合中的元素,應如何實現?.net

import java.util.*;
public class Test
{
    public static void main(String[] args) 
    {
        Collection<String> books = new ArrayList<String>();
        books.add("One book");
        books.add("Two book");
        books.add("Three book");
        System.out.println("原始元素以後:"+books);
        Iterator<String> it = books.iterator();
        while(it.hasNext())
        {
            String book = (String)it.next();
            System.out.println(book);
            if (book.equals("One book"))
            {
                books.remove(book);
            }
        }
        System.out.println("移除元素以後:"+books);
    }
}

運行結果爲:設計

原始元素以後:[One book, Two book, Three book]
One book
Exception in thread "main" java.util.ConcurrentModificationException
at java.util.ArrayList$Itr.checkForComodification(Unknown Source)
at java.util.ArrayList$Itr.next(Unknown Source)
at Test.main(Test.java:14)

緣由:不能在ArrayList遍歷的時候刪掉其中的元素,使大小發生改變,iterator發生異常code

刪除最後一個對象的運行結果爲:對象

原始元素以後:[One book, Two book, Three book]
One book
Two book
Three book
Exception in thread "main" java.util.ConcurrentModificationException
at java.util.ArrayList$Itr.checkForComodification(Unknown Source)
at java.util.ArrayList$Itr.next(Unknown Source)
at Test.main(Test.java:14)

緣由:在遍歷輸出時,大小沒有發生變化,而在刪除的時候大小發生了變化,產生異常。blog

修改後的代碼爲:

import java.util.*;
public class Test
{
    public static void main(String[] args) 
    {
        Collection<String> books = new ArrayList<String>();
        books.add("One book");
        books.add("Two book");
        books.add("Three book");
        System.out.println("原始元素以後:"+books);
        Iterator<String> it = books.iterator();
        while(it.hasNext())
        {
            String book = (String)it.next();
            System.out.println(book);
            if (book.equals("Three book"))
            {
                it.remove();
            }
        }
        System.out.println("移除元素以後:"+books);
    }
}

4.HashSet存儲的元素是不可重複的。運行下面的程序,分析爲何存入了相同的學生信息?若是要去掉重複元素,應該如何修改程序。

import java.util.*;
class Student {
    String id;  
    String name;
    public Student(String id, String name) {
        this.id = id;
        this.name = name;
    }
    public String toString() {
        return "Student id=" + id + ", name=" + name ;
    }
}
public class Test
{
    public static void main(String[] args) 
    {
        HashSet<Student> set = new HashSet<Student>();
        set.add(new Student("1","Jack"));
        set.add(new Student("2","Rose"));
        set.add(new Student("2","Rose"));
        System.out.println(set);                
    }

緣由:在實例化中,他們都是新建的內存空間,地址不一樣,因此判斷爲 不相同的,須要重寫equals()方法和hashCode()方法

修改後的代碼爲:

import java.util.*;
class Student {
    String id;  
    String name;
    public Student(String id, String name) {
        this.id = id;
        this.name = name;
    }
    public int hashCode() {
        final int prime = 31;
        int result = 1;
        result = prime * result + ((id == null) ? 0 : id.hashCode());
        result = prime * result + ((name == null) ? 0 : name.hashCode());
        return result;
    }
    public boolean equals(Object obj) {
        if (this == obj)
            return true;
        if (obj == null)
            return false;
        if (getClass() != obj.getClass())
            return false;
        Student other = (Student) obj;
        if (id == null) {
            if (other.id != null)
                return false;
        } else if (!id.equals(other.id))
            return false;
        if (name == null) {
            if (other.name != null)
                return false;
        } else if (!name.equals(other.name))
            return false;
        return true;
    }

    public String toString() {
        return "Student id=" + id + ", name=" + name ;
    }
}
public class Test
{
    public static void main(String[] args) 
    {
        HashSet<Student> set = new HashSet<Student>();
        set.add(new Student("1","Jack"));
        set.add(new Student("2","Rose"));
        set.add(new Student("2","Rose"));
        System.out.println(set);                
    }
}

(二)實驗總結

1.模擬KTV點歌系統

  • 程序設計思路:設計一個Music類,定義屬性歌名及歌手,分別定義方法顯示歌曲列表,添加歌曲。刪除歌曲,指定歌曲,將歌曲前移一位。分別建一個test類用LinkedList和ArrayList集合實現點歌系統,在test類中用while語句來循環,用switch()case來使用戶選擇要進行的操做

  • 實驗問題分析:

    問題1:

    public static List top(List list,int i){
    for(int j=0;j<list.size();j++){
    if(j==i){
    String song=list.get(i).getName();
    String songer=list.get(i).getSonger();
    list.remove(i);
    list.add(0,new Music(song,songer));
    }
    }
    return list;
    }
    緣由:沒有定義get及set方法

    解決方案:在獲得歌名時,不知應如何查找,問同窗同窗說不用setget方法,最後本身試了下定義那兩個方法,而後能夠出來。

    問題2:

    case 2:
    System.out.println("請輸入要添加的歌曲");
    String name=in.next();
    System.out.println("請輸入要添加的歌曲的歌手");
    String songer=in.next();
    Music.add(list,name,songer);
    break;
    緣由:不知道應該怎樣調用方法

    解決方案:經過問同窗得知應該用類名來進行調用,而後試了一下調用成功

2.模擬微博用戶註冊

  • 程序設計思路:設計一個用戶類,定義屬性用戶名,密碼,確認密碼密碼,生日,手機號碼,郵箱,再設計一個校驗信息類,驗證信息(用戶名、手機號、郵箱)是否重複及確認密碼和密碼相等並用正則表達式來完成對手機號碼、郵箱的驗證,創建一個test類調用方法來註冊微博。
  • 實驗問題分析:

問題1:

public static int checkname(Set<User> user,String cname){
    int i=0; 
    Iterator<User> cuser=user.iterator();
    while(cuser.hasNext())
    {
        if(cuser.next().getName().equals(cname)){
            System.out.println("用戶名已存在");
            i=1;
        }
        else{
            System.out.println("用戶名註冊成功");
            
        }
    }
    return i;  

}

緣由:剛開始定義方法爲void型的

解決方案:初始爲void ,沒有返回,沒法使從新輸入,將類型改成int型是返回值來判斷是否從新輸入

問題2:

String pat = "^[0-9]{5,10}+@qq.+(com|cn|edu|net|gov|org)$";

緣由:不知該怎樣用正則表達式來寫郵箱的驗證

解決方案:經過看書以及從網上查閱資料用[0-9]{5,10}來表示能夠爲5到10個數字。

(三)代碼託管

  • 碼雲commit歷史截圖
相關文章
相關標籤/搜索