雖然Java 5出現快兩年,但我最近都在用C#,所以也就對新功能比較沒接觸。
今天就利用一些時間,把自己寫的小程式更新為Java 5語法。
1. 若有程式已經很久沒有動,也不想改,又有很多Collection的put、get,在Eclipse都是Warning,怎麼辦呢?
解決方法: 在class宣告前加上metadata
@SuppressWarnings("unchecked")
若是deprecated的method,可以在method前加上
@SuppressWarnings("unchecked")
其實很穩定的code當然是不改為最高指導原則,但我對code的要求是:take warning as error,所以就必須要以上處理。
2. 使用Generic
before Generic:
HashMap hm = new HashMap();
int i=1;
String tt="test";
hm.put(new Integer(i), tt);
after Generic:
HashMap <Integer, String> hm = new HashMap <Integer, String>();
int i=1;
String tt = "test";
hm.put(i, tt); // 1. Auto Boxing 2. 自動型別檢查
今天因為這樣,發現了一個我之前copy-paste忘了改的地方,哈
3. Generic很好用,但我自己要怎麼寫呢?
before Generic:
public interface Queue
{
public void add(Object obj);
public Object remove();
}
public class ListQueue implements Queue
{
}
after Generic:
public interface Queue <A>
{
public void add(A obj);
public A remove();
}
public class ListQueue <A> implements Queue <A>
{
}
參考文件
今天就利用一些時間,把自己寫的小程式更新為Java 5語法。
1. 若有程式已經很久沒有動,也不想改,又有很多Collection的put、get,在Eclipse都是Warning,怎麼辦呢?
解決方法: 在class宣告前加上metadata
@SuppressWarnings("unchecked")
若是deprecated的method,可以在method前加上
@SuppressWarnings("unchecked")
其實很穩定的code當然是不改為最高指導原則,但我對code的要求是:take warning as error,所以就必須要以上處理。
2. 使用Generic
before Generic:
HashMap hm = new HashMap();
int i=1;
String tt="test";
hm.put(new Integer(i), tt);
after Generic:
HashMap <Integer, String>
int i=1;
String tt = "test";
hm.put(i, tt); // 1. Auto Boxing 2. 自動型別檢查
今天因為這樣,發現了一個我之前copy-paste忘了改的地方,哈
3. Generic很好用,但我自己要怎麼寫呢?
before Generic:
public interface Queue
{
public void add(Object obj);
public Object remove();
}
public class ListQueue implements Queue
{
}
after Generic:
public interface Queue <A>
{
public void add(A obj);
public A remove();
}
public class ListQueue
{
}
參考文件
留言