Ray's playground

 
上一页 1 ··· 43 44 45 46 47 48 49 50 51 ··· 56 下一页

2010年1月18日

Access Control(Thinking in Java)

摘要: The levels of access control from “most access” to “least access” are public, protected, package access (which has no keyword), and private. 阅读全文

posted @ 2010-01-18 22:30 Ray Z 阅读(201) 评论(0) 推荐(0) 编辑

Storing Local Data(Chapter 6 of Hello, Android)

摘要: Your application can store data using several different techniques dependingon the size of the data, its structure, its lifetime, and whether itwill be shared with other programs. In this chapter, we&... 阅读全文

posted @ 2010-01-18 17:52 Ray Z 阅读(155) 评论(0) 推荐(0) 编辑

2010年1月17日

Multimedia(Chapter 5 of Hello, Android)

摘要: Android supports the following file types (this is subject to change withnew releases):• WAV (PCM uncompressed)• AAC (Apple iPod format, unprotected)• MP3 (MPEG-3)• WMA (Window... 阅读全文

posted @ 2010-01-17 23:03 Ray Z 阅读(196) 评论(0) 推荐(0) 编辑

2010年1月16日

Exploring 2D Graphics(Chapter 4 of Hello, Android)

摘要: There are too many stuff in this chapter.I need to review the code later. 阅读全文

posted @ 2010-01-16 11:29 Ray Z 阅读(190) 评论(0) 推荐(0) 编辑

2010年1月15日

Initialization & Cleanup(Thinking in Java)

摘要: [代码] 阅读全文

posted @ 2010-01-15 22:29 Ray Z 阅读(156) 评论(0) 推荐(0) 编辑

2010年1月14日

Controlling Execution(Thinking in Java)

摘要: [代码] 阅读全文

posted @ 2010-01-14 22:24 Ray Z 阅读(143) 评论(0) 推荐(0) 编辑

Operators(Thinking in Java)

摘要: The default behavior of equals( ) is to compare references. So unless you override equals( ) in your new class you won’t get the desired behavior.  Java programmers cannot implement their own ov... 阅读全文

posted @ 2010-01-14 08:55 Ray Z 阅读(193) 评论(0) 推荐(0) 编辑

2010年1月12日

Everything Is an Object(Thinking in Java)

摘要: It’s useful to visualize some aspects of how things are laid out while the program is running—in particular how memory is arranged. There are five different places to store data:  1.Regist... 阅读全文

posted @ 2010-01-12 21:33 Ray Z 阅读(566) 评论(0) 推荐(0) 编辑

2010年1月11日

Introduction to Objects(Thinking in Java)

摘要: 1.Everything is an object. Think of an object as a fancy variable; it stores data, but you can “make requests” to that object, asking it to perform operations on itself. In theory, you can... 阅读全文

posted @ 2010-01-11 21:56 Ray Z 阅读(287) 评论(0) 推荐(0) 编辑

2010年1月9日

Designing the User Interface(Chapter 3 of Hello, Android)

摘要: A layout is a container for one or more child objects and a behavior to position them on the screen within the rectangle of the parent object.  Here is a list of the most common layouts provided by An... 阅读全文

posted @ 2010-01-09 22:34 Ray Z 阅读(208) 评论(0) 推荐(0) 编辑

上一页 1 ··· 43 44 45 46 47 48 49 50 51 ··· 56 下一页

导航