随笔分类 - 《Learn Java for Android》
This book is worth reading for Android development
摘要:Chatper 3 Discovering Classes and ObjectExercises: 1.What is a class? A class is a template for manufacturing objects. 2.How do you declare a class? By providing a header followed by a body.The header minimally consists of reserved word class followed by an identifier.The body consists of a sequ...
阅读全文
摘要:Chapter 2 Learning Java language fundamentalsexercises: 1.What is Unicode? Unicode is a computing industry standard for consistently encoding,representing,and handling text that's expressed in most of world's writing system 2.What is a comment? A comment is language feature for embedding doc
阅读全文
摘要:Language_suport and Other Language-Oriented API: strings,exceptions, threads, #java.lang.* offers the String class to suport strings, the Throwable class to suport exceptions,and the Thread class and Runnable inteface to suport threads.what's more, StringBuffer for creating changeable strings, a
阅读全文
摘要:“学前”说明:《Learn Java for Android》这本书内容很多,都是精华,建议大家看英文版的。在这里我不打算一一总结书中的内容,书中每章节后面的exercises都很好,非常有总结性,而且在这些习题后面还有精华的Summary,所以,我就列举下每章exercises的内容(含参考答案)以及个人根据Summary提炼的一些内容(个人觉得比较重要的可能会另外写多点)。写Blog的过程,就是我学习&温故知新的过程(一律采用英文哦,顺便学下professional English*^__^*)。下面开始:Chapter One :Getting Started with Java
阅读全文