SCJP題庫第184題 Get link Facebook X Pinterest Email Other Apps - September 28, 2011 Ans: 解說: List可允使用整數索引存取元素 Map定義了get方法 Queue被設計來暫存元素(在被處理之前) Set找不到元素e1與e2的組合,使得e1.equals(e2),這是說set不會有重複的元素 Get link Facebook X Pinterest Email Other Apps Comments
第2週作業 製作月曆左邊文字的部份 - September 21, 2022 第一步 建立一個資料夾及子資料夾,名稱分別是:「網頁前端介面設計」及「Part 1 左欄 今日資料」,畫面如下: <pre><code class='html'> [My HTML goes here] </code></pre> 第二步: 第三步: 第四步: 最後的結果畫面: Read more
Android-使用webview在V3版的Google地圖GPS定位 - November 24, 2012 目的:透過GPS或網路定位來決定裝置目前的位置 程式執行動態畫面錄影: https://www.youtube.com/watch?v=_Bw2YP39WOw 畫面中可看到經緯度的資料約每隔一秒更新一次。 測試時必須要用GPS的模擬器播放預存的GPS記錄檔(KML)來模擬實際GPS抓到定位的資料,如下畫面: 程式要能接收GPS或網路的定位資料必須實作LocationListener介面,其中有幾個介面方法可以用在實際上的程式撰寫,像是定位資料的變化的相關方法「public void onLocationChanged(Location location」,其他像是偵測GPS裝置是否啟動或不啟動的方法。 主程式: package wells.example.googlemapexample; import android.app.Activity; import android.content.Context; import android.location.Criteria; import android.location.Location; import android.location.LocationListener; import android.location.LocationManager; import android.os.Bundle; import android.view.View; import android.webkit.WebView; import android.webkit.WebViewClient; import android.widget.Button; import android.widget.EditText; public class MainActivity extends Activity implements LocationListener { private static final String MAP_URL = "file:///android_asset/googleMap.html"; private WebView webView; private EditText LatText Read more
SCJP題庫第183題 - September 28, 2011 Ans: 解說: CompareTo 傳回值若 >0 表示本身物件的值 大於 傳入的參數值 因此 用 i-i2.i 來直接表示這個關係 Read more
Comments