What you think is what you get

All posts by: zgh149

使用 Adapter 封裝未完成類別(unfinished class)

Adapter Pattern 將類別的介面轉換成另一個介面,使得原本不相容的類別可以互相一起工作。 使用的情......

Shot For People Walking On Clean Modern Street

It’s no secret that the digital industry is booming. Fr......

Refactoring example : GameMap

在上篇介紹如何建立 android test project 並成功運行 test case 之後,本篇開始介......

Create test project for android project

保持重構後程式運行的正確性是重構前的第一考量 因此在重構前一定要先建立對應的測試系統,這裡使用 junit 來......

Set unban ip in fail2ban

How to set unban ip in fail2ban??   1. Edit /etc/f......

jenkins build error : error while writing Main: Main.class (Permission denied)

Description: Build java project in jenkins and show err......

如何簡單去除多餘的小數位 : 可指定位數 : double

Description: 假設你有個Double dou = 3.1415; 現在只想留下3.14(去除掉倒數......

如何簡單的從TextView, EditView取得數值

通常輸入數值都會使用EditText等等的文字框當作對象, 如何才能很快速的從這些view取得數值呢?? 使用......

取得 wifi scan ap result : ScanResult

在 android 手機中 -> 設定 -> Wi-Fi , 每隔一段時間會自動搜尋附近的wifi......

使用 Factory Method Pattern 替換多建構式

Factory Method Pattern : 提供產生物件的方法, 並讓其子類別決定產生何種類型的實體, ......