buchspektrum Internet-Buchhandlung

Neuerscheinungen 2019

Stand: 2020-02-01
Schnellsuche
ISBN/Stichwort/Autor
Herderstraße 10
10625 Berlin
Tel.: 030 315 714 16
Fax 030 315 714 14
info@buchspektrum.de

Iuliana Cosmina

Java for Absolute Beginners


Learn to Program the Fundamentals the Java 9+ Way
1st ed. 2019. xx, 612 S. 170 SW-Abb., 2 Farbabb. 254 mm
Verlag/Jahr: SPRINGER, BERLIN; APRESS 2019
ISBN: 1-484-23777-3 (1484237773)
Neue ISBN: 978-1-484-23777-9 (9781484237779)

Preis und Lieferzeit: Bitte klicken


Write your first code in Java using simple, step-by-step examples that model real-word objects and events, making learning easy. With this book youŽll be able to pick up the concepts without fuss. Java for Absolute Beginners teaches Java development in language anyone can understand, giving you the best possible start. YouŽll see clear code descriptions and layout so that you can get your code running as soon as possible. After reading this book, youŽll come away with the basics to get started writing programs in Java.

Author Iuliana Cosmina focuses on practical knowledge and getting up to speed quickly-all the bits and pieces a novice needs to get started programming in Java. First, youŽll discover how Java is executed, what type of language it is, and what it is good for. With the theory out of the way, youŽll install Java, choose an editor such as IntelliJ IDEA, and write your first simple Java program. Along the way youŽll compile and execute this program so it can run on any platform that supports Java. As part of this tutorial youŽll see how to write high-quality code by following conventions and respecting well-known programming principles, making your projects more professional and efficient.

Finally, alongside the core features of Java, youŽll learn skills in some of the newest and most exciting features of the language: Generics, Lambda expressions, modular organization, local-variable type inference, and local variable syntax for Lambda expressions.

Java for Absolute Beginners gives you all you need to start your Java 9+ programming journey. No experience necessary.

What YouŽll Learn

Use data types, operators, and the new stream API

Install and use a build tool such as Gradle

Build interactive Java applications with JavaFX

Exchange data using the new JSON APIs

Play with images using multi-resolution APIs

Use the publish-subscribe framework

Who This Book Is For

Those who are new to programming and who want to start with Java.
Chapter 1: An Introduction to Java and Java 9 - When every version was released, how were they called and what were the particularities - What is Java, how it is executed, what type of language it is and what is it good for - Chapter 2: Preparing your development environment - Installing Java, choosing an editor, choosing a build tool - Chapter 3: Getting your feet wet - Writing a simple program, compile and execute - Adding a dependency of somebody elseŽs code through dependencies of existing libraries - Mention best tools for java and most used frameworks like Spring
Chapter 4: Java syntax - what is a package, module - class - enums - interface ( private methods & default methods) - class, constructor, methods... etc - removal of _ Chapter 5: Data Types - primitive, object types (emphasis on String, Collections, Calendar API) - String - compact Strings - Collections: Immutable collections, factory methods for Collections(JEP 269) - mention Generics - optional - enhancements - threads, futures - CompletableFuture (JEP 266)
Chapter 6: Operators - unary, binary, ternary, logic, and the diamond operator (used in conjunction with anonymous inner classes)
Chapter 7: Controlling the flow - if, loops - try catch (try with resources with managed variables) - recursion
Chapter 8: The Stream API - streams , optional to Stream, enhancements
Chapter 9: Debugging , testing and documenting - what is a break point - loggers : unified JVM logging (JEP 264) - mocks and stubs - jmc, jps, jcmd - JDK utilities - The new Doclet API - the JShell Command Line Tool - accessing the process API - @Deprecated enhancements (JEP 277)
Chapter 10: Making your application interactive - request data with System.in - Swing - Web applications (use the new HTTP client) - JavaFX UI (JEP 253) - Internationalization (JEP 267)
Chapter 11: Writing files - storing data to files, reading it from them - serialization to Binary, XML, JSON, YML (JEP290) - playing with images - multi-resolution API
Chapter 12: Publish-Subscribe Framework - reactive streams
Chapter 13: Garbage Collection - JEP 214,248,271,291