維護工作的總結

      這個項目並不是我所預期的那種,它跟一般的項目不一樣,沒有需求,設計和實現。我們所要做的就是解決Bug。可以這樣講,直接進入測試和維護階段。      我們的工作是很痛苦的,因為解決Bug本來就很痛苦,特別是當Bug數量較多,而時間又很緊迫的情況下。我們所處理的Bug也讓人感覺到什麼是鬱悶和糾結。因為Android是一個開源的系統,我們所拿到的東西就是達到幾個G的源碼。沒有文檔,沒有需求說明,沒有設計,就連代碼中的注釋都少的可憐。專案經理,開發人員,測試人員都面臨著一大堆不確定的東西。

Graphics User Interfaces

Graphics User InterfacesThe world has changed a lot since GUI (Graphics User Interfaces) came to this planet. GUI has become standard user interfaces nowadays no matter what kind of software is. There are a lot of platforms and Operating systems

關於寫報告

如何寫調查報告==============如果客戶或上級讓你去調研某個問題,你當時不知道,但他們給你一定的時間讓你去調研,你最後就要給一份報告給他們以示你的調研結果。那麼如何寫一份合格的調研報告呢。1. 要有確定的結論  研究了一天卻沒有個結論,這是讓人無法接受的事情。也不要說我還不確定,或是這還需要再研究。如果說,當前的報告滿足現階段的要求,如果有更高的要求,那是是需要更深入的研究,這時,可以說,要深入的研究。2. 要有真實的資料 

Activity之間的資料傳遞

Activity之間是沒有辦法直接傳遞資料的。Android的設計原則是,用Intent在不同的Activity和進程之間進行通訊,但是通常來講,Intent中只能存入基礎資料型別 (Elementary Data

How to grow to be a professional developer

How to grow to be a professional developer  Learning is the way and the only way to grow to be a better developer. You get new skills through learning, you become more competitive through learning; you become a better developer through learning. In

關於解Bug的總結

1. 與其他應用互動的Bug   背景:    一個手機音樂播放器,多媒體通常存放在手機外部儲存卡上(SDcard上)。所以只有當SD卡Mount到手機上時,才可以播放媒體。音樂播放器就會監聽SD卡狀態,當SD卡從手上卸載或彈出時,播放器會儲存現場並停止播放;當SD卡重新Mount回手機時,再恢複現場和繼續播放。也即當播放器收到“SD卡Eject”訊息時,停止,當收到“SD卡Mount"時繼續播放。播放器可以在背景播放媒體。   

Be at peace, Steve Jobs

ForewordOn Oct 6 2011 (Beijing Time), former Apple CEO Steve Jobs said goodbye to this world for ever at age of 56.As theApple said: we lost a great mentor, a great master who has changed the world a lot in many means. For such a man, we should not

Best practices when developing

the best practice would be TDD(Test DriveDevelopment)When you want to develop a new software orprogram, no matter how tiny it is or how large it is, the following guide won'tmislead you.First you must remember and understand,every piece of program

學習要利用點滴時間

學習要利用點滴時間當你偶爾得到幾分鐘的空閑時,這將是你最佳的學習機會。這幾分鐘可能是你剛做完一件其他事,或是在做其他事的途中,由於大腦已高度集中在另一件事上較長時間,所以這幾分空閑是對大腦的休息,轉移到其他事上,比如看會書,就會記住所看內容,因為大腦切換到其他事物上了,對所看到的事就會記憶特別的清楚。這特別適合學習比較零散又需要記憶的知識,比如學習API,各種工具,英語句子等。對於這些東西,你花幾個小時時間,可能看了許多,也懂得了很多,但是能記住的卻很少。利用點滴時間去學習和記憶這些較為零散的東

Some good books

Some good books about some areas:  1. C    For novices: <C primer> & <Practical C programming>    For ones after reading <C primer> or <practical c programming>, <The c programming language>        read it twice at

運算元組的常用方式二—–排序、尋找

/** * 運算元組的常用方式 */public class ArrayDemo {public static void main(String[] args) {int[] arr = new int[] { 1, 3, 10, 2, 5, 7, 8 };// 排序前System.out.println("--------------------排序前--------------------");printArray(arr);// 選擇排序// selectSort(arr);//

插入一個整數到一個有序的數組中,並保證該數組是有序的

需求:將一個數插入到一個有續的數組中,插入成功後,還要保證該數組中的數是有序的思考:1)、用折半尋找法找到這個數在數組中的位置,如果這個數存在數組中,就把這個數插入到這個數所在數組中的位置上就可以了,如果這個數不存在數組中,則返回這個數組中最小下標的值,該下標值就是該數要插入數組中的位置2)、將這個數插入到指定數組中的位置/** * 折半尋找法找到一個元素在數組中的下標 * @param arr 數組 * @param key 要尋找的元素 * @return

實戰技巧:goto語句的替代實現方式

曾幾何時,goto是多麼的讓牛人綻放他們高超的精湛技術曾幾何時,goto又變成了萬惡之首曾幾何時,goto只在教科書中的樣本才會出現有太多的理由不讓用goto,但有時,我們又想使用goto的功能,怎麼辦?用try/catch/finally便可實現同等於goto的功能,來看二個樣本:try { // operation one if (failed) { throw Exception; } // operation two

十進位轉換成二進位、八進位、十六進位的通用方法

/** * 將十進位轉換成二進位、八進位、十六進位 * 說明: * 1)、在JAVA語言一個整數用4個八位表示,即32個二進位位 * 2)、一個二進位位用0和1表示,最大值是1 * 3)、一個八進位位表示3個二進位位,最大值是7 * 4)、一個十六進位位表示4個二進位位,最大值是15 * */public class DecimalConvert {public static void main(String[] args) {int num =

Advices to English Learner.

Advices to English Learner.  Up to the time writing this article, I have learned English for total 11 years(4 years of Grammar School, 3 yearsof High school and 4 years of college). That sounds like a pretty long time, to my shame and to your

Miscellaneous ideas about programming and sociaty

advices to learning programming:  1. If you want something, work for it.  2. There is no one language which is more powerful than another.      Any language are designed to solve some area of problems. Any language has good reason to exist.There is

自動裝箱與拆箱引發的享元設計模式

/** * 自動裝箱與拆箱 */public class Autoboxing {public static void main(String[] args) {Integer num1 = 20;//自動裝箱int num2 = new Integer(20);//自動拆箱System.out.println(num2 == num1);//true//-128~127之間的同一個Intege對象相比為trueInteger num3 = 128;Integer num4 =

Ideas from Kungfu Panda

I love <Kungfu Panda> so much, and I have seen it for a dozen of times.Everytime I saw it, many special feelings came to me. Through it, we can get alot of valuable insights about our daily life.    First, there are no accident. This is

JDK內建的native2ascii轉碼工具使用詳解

 背景:      在做Java開發的時候,常常會出現一些亂碼,或者無法正確識別或讀取的檔案,比如常見的validator驗證用的訊息資源(properties)檔案就需要進行Unicode重新編碼。原因是java預設的編碼方式為Unicode,而我們的電腦系統編碼常常是GBK等編碼。需要將系統的編碼轉換為java正確識別的編碼問題就解決了。                                                                              

使用內省的方式操作JavaBean

import java.beans.BeanInfo;import java.beans.Introspector;import java.beans.PropertyDescriptor;import java.lang.reflect.Field;import java.lang.reflect.Method;/** * 使用內省的方式操作JavaBean */public class IntroSpectorTest {public static void main(String[]

總頁數: 61357 1 .... 12738 12739 12740 12741 12742 .... 61357 Go to: 前往

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.