• Complain

Robert Liguori - Java 8 Pocket Guide

Here you can read online Robert Liguori - Java 8 Pocket Guide full text of the book (entire story) in english for free. Download pdf and epub, get meaning, cover and reviews about this ebook. year: 2014, publisher: OReilly Media, genre: Computer. Description of the work, (preface) as well as reviews are available. Best literature library LitArk.com created for fans of good reading and offers a wide selection of genres:

Romance novel Science fiction Adventure Detective Science History Home and family Prose Art Politics Computer Non-fiction Religion Business Children Humor

Choose a favorite category and find really read worthwhile books. Enjoy immersion in the world of imagination, feel the emotions of the characters or learn something new for yourself, make an fascinating discovery.

Robert Liguori Java 8 Pocket Guide

Java 8 Pocket Guide: summary, description and annotation

We offer to read an annotation, description, summary or preface (depends on what the author of the book "Java 8 Pocket Guide" wrote himself). If you haven't found the necessary information about the book — write in the comments, we will try to find it.

When you need quick answers for developing or debugging Java programs, this pocket guide provides a handy reference to standard features of the Java programming language and its platform. Youll find helpful programming examples, tables, figures, and lists, as well as Java 8 features such as Lambda Expressions and the Date and Time API. Its an ideal companion, whether youre in the office, in the lab, or on the road.
Quickly find Java language details, such as naming conventions, types, statements and blocks, and object-oriented programming
Get details on the Java SE platform, including development basics, memory management, concurrency, and generics
Browse through information on basic input/output, NIO 2.0, the Java collections framework, and the Java Scripting API
Get supplemental references to fluent APIs, third-party tools, and basics of the Unified Modeling Language (UML)

Robert Liguori: author's other books


Who wrote Java 8 Pocket Guide? Find out the surname, the name of the author of the book and a list of all author's works by series.

Java 8 Pocket Guide — read online for free the complete book (whole text) full work

Below is the text of the book, divided by pages. System saving the place of the last page read, allows you to conveniently read the book "Java 8 Pocket Guide" online for free, without having to search again every time where you left off. Put a bookmark, and you can go to the page where you finished reading at any time.

Light

Font size:

Reset

Interval:

Bookmark:

Make
Java 8 Pocket Guide
Robert Liguori
Patricia Liguori
Dedication

This book is dedicated to our beautiful, awesome-tastic daughter, Ashleigh.

Preface

Designed to be your companion, this Pocket Guide provides a quick reference to the standard features of the Java programming language and its platform.

This Pocket Guide provides you with the information you will need while developing or debugging your Java programs, including helpful programming examples, tables, figures, and lists.

It also contains supplemental information about things such as the Java Scripting API, third-party tools, and the basics of the Unified Modeling Language (UML).

The material in this book also provides support in preparing for the Oracle Certified Associate Java SE 7 Programmer I Exam. If you are considering pursuing this Java certification, you may also wish to consider acquiring OCA Java SE 7 Programmer I Study Guide (Exam 1Z0-803) by Edward Finegan and Robert Liguori (McGraw-Hill Osborne Media, 2012).

Java coverage in this book is representative through Java SE 8. However, the primary differences between this Java 8 Pocket Guide and the prior Java 7 Pocket Guide is the addition of the Date and Time API and the Lambda Expressions chapters.

Book Structure

This book is broken into three parts: detail Java platform components and related topics. The appendixes cover third-party tools and the Unified Modeling Language.

Conventions Used in This Book

The following typographical conventions are used in this book:

Italic Indicates new terms, URLs, email addresses, filenames, and file extensions. Constant width Used for program listings, as well as within paragraphs to refer to program elements such as variable or function names, databases, data types, environment variables, statements, and keywords. Constant width bold Shows commands or other text that should be typed literally by the user. Constant width italic Shows text that should be replaced with user-supplied values or by values determined by context.
Tip

This element signifies a tip, suggestion, or general note.

Warning

This element indicates a warning or caution.

Safari Books Online
Note

Safari Books Online is an on-demand digital library that delivers expert content in both book and video form from the worlds leading authors in technology and business.

Technology professionals, software developers, web designers, and business and creative professionals use Safari Books Online as their primary resource for research, problem solving, learning, and certification training.

Safari Books Online offers a range of product mixes and pricing programs for organizations, government agencies, and individuals. Subscribers have access to thousands of books, training videos, and prepublication manuscripts in one fully searchable database from publishers like OReilly Media, Prentice Hall Professional, Addison-Wesley Professional, Microsoft Press, Sams, Que, Peachpit Press, Focal Press, Cisco Press, John Wiley & Sons, Syngress, Morgan Kaufmann, IBM Redbooks, Packt, Adobe Press, FT Press, Apress, Manning, New Riders, McGraw-Hill, Jones & Bartlett, Course Technology, and dozens more. For more information about Safari Books Online, please visit us online.

How to Contact Us

Please address comments and questions concerning this book to the publisher:

OReilly Media, Inc.
1005 Gravenstein Highway North
Sebastopol, CA 95472
800-998-9938 (in the United States or Canada)
707-829-0515 (international or local)
707-829-0104 (fax)

We have a web page for this book, where we list errata, examples, and any additional information. You can access this page at http://oreil.ly/java-8-pocket-guide.

To comment or ask technical questions about this book, send email to .

For more information about our books, courses, conferences, and news, see our website at http://www.oreilly.com.

Find us on Facebook: http://facebook.com/oreilly

Follow us on Twitter: http://twitter.com/oreillymedia

Watch us on YouTube: http://www.youtube.com/oreillymedia

Authors

Robert James Liguori is the principal for Gliesian LLC. He is an Oracle Certified Expert, supporting several Java-based air traffic management and safety applications. Patricia Liguori is a multi-disciplinary information systems engineer for The MITRE Corporation. She has been developing real-time air traffic management systems and aviation-related information systems since 1994.

Acknowledgments

We extend a special thank you to our editor, Meghan Blanchette. Her oversight and collaboration has been invaluable to this endeavor.

Further appreciation goes out to Michael Loukides (technical editor of the initial Java Pocket Guide ), our technical reviewer Ryan Cuprak, as well as the various members of the OReilly team, our family, and our friends.

We would also like to thank again all of those who participated with the original Java Pocket Guide and the Java 7 Pocket Guide .

Most importantly, we thank you for using the book as a reference guide and for loving Java. Feel free to post a picture of yourself with the book on Tumblr. It would be nice to see who is using the book and where it has been (even on vacations). :)

Part I. Language
Chapter 1. Naming Conventions

Naming conventions are used to make Java programs more readable. It is important to use meaningful and unambiguous names comprised of Java letters.

Class Names

Class names should be nouns, as they represent things or objects. They should be mixed case (camel case) with only the first letter of each word capitalized, as in the following:

publicclassFish{...}
Interface Names

Interface names should be adjectives. They should end with able or ible whenever the interface provides a capability; otherwise, they should be nouns. Interface names follow the same capitalization convention as class names:

publicinterfaceSerializable{...}publicinterfaceSystemPanel{...}
Method Names

Method names should contain a verb, as they are used to make an object take action. They should be mixed case, beginning with a lowercase letter, and the first letter of each subsequent word should be capitalized. Adjectives and nouns may be included in method names:

publicvoidlocate(){...}// verbpublicStringgetWayPoint(){...}// verb and noun
Instance and Static Variable Names

Instance and static variable names should be nouns and should follow the same capitalization convention as method names:

privateStringwayPoint;
Parameter and Local Variable Names

Parameter and local variable names should be descriptive lowercase single words, acronyms, or abbreviations. If multiple words are necessary, they should follow the same capitalization convention as method names:

Next page
Light

Font size:

Reset

Interval:

Bookmark:

Make

Similar books «Java 8 Pocket Guide»

Look at similar books to Java 8 Pocket Guide. We have selected literature similar in name and meaning in the hope of providing readers with more options to find new, interesting, not yet read works.


Reviews about «Java 8 Pocket Guide»

Discussion, reviews of the book Java 8 Pocket Guide and just readers' own opinions. Leave your comments, write what you think about the work, its meaning or the main characters. Specify what exactly you liked and what you didn't like, and why you think so.