Head First Java Second Edition pdfseeders: 60
leechers: 0
Head First Java Second Edition pdf (Size: 41.44 MB)
Description
If you want to learn JAVA look no further: welcome to the first GUI based technical book ! This perfectly executed ground breaking format delivers benefits other java texts simply can't ..
prepare yourself for a truly remarkable journey through javaland. Table of Contents (summary) Intro xxi 1 Breaking the Surface: a quick dip 2 A Trip to Objectville: yes, there will be objects 3 Know Your Variables: primitives and references 4 How Objects Behave: object state affects method behavior 5 Extra-Strength Methods: flow control, operations, and more 6 Using the Java Library: so you don’t have to write it all yourself 7 Better Living in Objectville: planning for the future 8 Serious Polymorphism: exploiting abstract classes and interfaces 9 Life and Death of an Object: constructors and memory management 10 Numbers Matter: math, formatting, wrappers, and statics 11 Risky Behavior: exception handling 12 A Very Graphic Story: intro to GUI, event handling, and inner classes 13 Work on Your Swing: layout managers and components 14 Saving Objects: serialization and I/O 15 Make a Connection: networking sockets and multithreading 16 Data Structures: collections and generics 17 Release Your Code: packaging and deployment 18 Distributed Computing: RMI with a dash of servlets, EJB, and Jini A Appendix A: Final code kitchen B Appendix B: Top Ten Things that didn’t make it into the rest of the book Index Table of Contents Related Torrents
Sharing WidgetAll Comments |
// Source file FnPrint.javaclass FnAwesome { String text = "Java is freakin' awesome!";}public class FnPrint { public static void main(String[] args) { FnAwesome output = new FnAwesome(); System.out.println(output.text); System.out.println("nWait just a damn minute...nMake that:n"); System.out.println(output.text.replace("freak", "fuck")); System.out.println("nMuch better. NAMA-FUCKIN-STE!n"); }}Aaaand quick question: how the hell do you insert a tab in these comment boxes (without using a shitload of NBSPs)?
Head First Series Rocks..
:)