Professional Android 2 Application Development

I've bought Professional Android 2 Application Development by Reto Meier this evening and costs S$55 (after 20% discount). I felt like myself to buy this book when I saw at book shop after reviewing the main content. Because it covers based-features of Android and found a lot of useful information of Android as well. And it covers the functions which I want to know like SMS, working in background, audio and video features.

Hope it would be worth.

How to write clean code

Yesterday, I've read "Clean Code" book by Robert C. Martin. It's very useful for programmers like me to read this book because which describes how to write clean code and useful code. I'll show few part of this book.

Ok, this book shows how to give a name for variables, functions, etc. Before, I gave a short name to most of my using variables and functions like "sname, gPersonInfo, etc". Once I've read this book, I've got a lot of knowledge how to write and give a name for variables and functions.

Here is example when I developed before.

view plain print about
1component {
2    public struct function gPerson(required String pName, required String pDOB){
3        sPerson = structNew();
4        sPerson.fName = arguments.pName;
5        sPerson.DOB = arguments.pDOB;
6        return sPerson;
7    }
8}

[More]

Top of Page