BlackBerry Development Fundamentals

What people have said about the book:

I have been thinking a lot about what you said about the book not being a "learning Java" book and I think (for me at least) that will be perfect. The Java part, aside from the nuances, is pretty much like C#, etc.... Throw in the RIM API and it's not a huge deal to learn. However, learning it completely and properly obviously will take some time. The stuff you mention, MDS etc..., will be the very topics I will need for sure come time for the release of your book.

Rich Friedel
Home Inside the Book Errata Chapter 12 - Page 291
Chapter 12 - Page 291 PDF Print E-mail

On the bottom of page 291, the descriptions in the code snippet are reversed. The book has this:

//#ifndef
  [Code to be executed if the preprocessor define exists]
//#else
  [Code exectued if the preprocessor define does not exist]
//#endif

When it should actually be this:

//#ifndef
  [Code exectued if the preprocessor define does not exist]
//#else
  [Code to be executed if the preprocessor define exists]
//#endif

Last Updated on Wednesday, 02 December 2009 09:40
 
InformIT (Pearson Education)