我剛開始學習android編程,在通過android Tab Layout教程工作時,我注意到他們用下面的代碼創建了一個新的Intent。Android意圖,關於setClass()的問題
// Create an Intent to launch an Activity for the tab (to be reused)
intent = new Intent().setClass(this, ArtistsActivity.class);
截至目前爲止,所有我讀過的書已創建使用
intent = new Intent(this, ArtistActivity.class);
一個新的意圖,想知道是否有代碼的兩行之間的差異。
啊,我以爲他們做了同樣的事情。我對編程還很陌生,有時候很難理解API文檔,所以我只需要確認。謝謝 – user786362 2011-06-06 19:21:15