Fast Track to Java 11 Programming for OO Experienced Developers (C#, C++, etc.)

JumpStart Your Java 11 Skills with Latest Features & Best Practices for Building Robust Applications

TT2104-J11

Introductory

4 Days

Course Overview

If you're an experienced OO developer (coming from a C# or C++ background, etc.) who needs to transition to programming in Java, this fast-paced, hands-on course will get you there quickly. Fast Track to Java Programming for OO Experienced Developers is a four-day, lab-intensive class where you'll quickly be immersed in working with the latest Java 11 programming techniques, using best practices for writing solid, robust (and well-written!) modern object-oriented applications. In addition to learning excellent, current coding skills in Java, you'll explore the new improved features for better performance and new capabilities for addressing rapid application development that Java 11 brings to the table. This course includes several key aspects that were introduced in Java 9, Java 10 and Java 11 including the Java Modular System, Local Variable Type Inference and several API updates.  This course also includes a Quick Look at what’s next in Java’s latest editions.

Working in a hands-on learning environment, guided by our expert team, attendees will learn to:

  • Understand not only the fundamentals of the Java language, but also its importance, uses, strengths and weaknesses
  • Understand the basics of the Java language and how it relates to OO programming and the Object Model
  • Learn to use Java exception handling features
  • Work with the Modular system (Project Jigsaw)
  • Understand and use classes, inheritance and polymorphism
  • Understand and use collections, generics, autoboxing, and enumerations
  • Process large amount of data using Lambda expressions and the Stream API
  • Abstract, static and private methods in interfaces
  • Take advantage of the Java tooling that is available with the programming environment being used in the class
  • Specific Java 11 features covered: Using the Local Variable Type in Lambda expressions; Updates made to the String API
  • Time Permitting: Quick look ahead – What's New in the Latest Java Editions

NOTE: This course is for the Java 11 LTS (Long-Term Support) edition, but is also available for Java 8 LTS or Java 17 LTS. This course also uses the Eclipse IDE, but is also available for IntelliJ if preferred. Please inquire for details.

Course Objectives

This “skills-centric” course is about 50% hands-on lab and 50% lecture, designed to train attendees in core OO coding and Java development skills, coupling the most current, effective techniques with the soundest industry practices.  Our engaging instructors and mentors are highly experienced practitioners who bring years of current "on-the-job" experience into every classroom.

Working in a hands-on learning environment, guided by our expert team, attendees will learn to:

  • Understand not only the fundamentals of the Java language, but also its importance, uses, strengths and weaknesses
  • Understand the basics of the Java language and how it relates to OO programming and the Object Model
  • Learn to use Java exception handling features
  • Work with the Modular system (Project Jigsaw)
  • Understand and use classes, inheritance and polymorphism
  • Understand and use collections, generics, autoboxing, and enumerations
  • Process large amount of data using Lambda expressions and the Stream API
  • Abstract, static and private methods in interfaces
  • Take advantage of the Java tooling that is available with the programming environment being used in the class
  • Specific Java features covered: Using the Local Variable Type in Lambda expressions; Updates made to the String API
  • Time Permitting: Quick look ahead – What's New in the Latest Java Editions

Need different skills or topics?  If your team requires different topics or tools, additional skills or custom approach, this course may be further adjusted to accommodate.  We offer additional Java and JEE programming, design, testing and application security courses which may be blended with this course for a track that best suits your development objectives. Our team will collaborate with you to understand your needs and will target the course to focus on your specific learning objectives and goals.

Course Prerequisites

This is an introductory-level Java programming course, designed for experienced developers who wish to get up and running with Java, or who need to reinforce sound Java coding practices, immediately.  Attendees should have a working knowledge of developing OO software applications (coming from C++, C# or other OO programming backgrounds).

Please see the Related Courses tab for specific Pre-Requisite courses, Related Courses that offer similar skills or topics, and next-step Follow-On Courses and Learning Path recommendations.

Course Agenda

Please note that this list of topics is based on our standard course offering, evolved from typical industry uses and trends. We will work with you to tune this course and level of coverage to target the skills you need most.

Session: Java: A First Look

Lesson: The Java Platform

  • The Java Platform
  • Lifecycle of a Java Program
  • Responsibilities of JVM
  • Documentation and Code Reuse

Lesson: Using the JDK

  • Explain the JDK’s file structure
  • Use the command line compiler to compile a Java class
  • Use the command line Java interpreter to run a Java application class
  • Lab: Exploring MemoryViewer

Lesson: The Eclipse Paradigm

  • Become more familiar with Eclipse workbench concepts
  • Explore the paradigm used by Eclipse, consisting of editors, views and perspectives in detail
  • Introduce some commonly used views
  • Explain Perspectives
  • Tutorial: Setup Projects in Eclipse

Session: Getting Started with Java

Lesson: Writing a Simple Class

  • Write a Java class that does not explicitly extend another class
  • Define instance variables for a Java class
  • Create object instances
  • Primitives vs Object References
  • Implement a main method to create an instance of the defined class
  • Lab: Create a Simple Class

Lesson: Adding Methods to the Class

  • Write a class with accessor methods to read and write instance variables
  • Write a constructor to initialize an instance with data
  • Write a constructor that calls other constructors of the class to benefit from code reuse
  • Use the this keyword to distinguish local variables from instance variables
  • Lab: Create a Class with Methods

Session: Essential Java Programming

Lesson: Language Statements

  • Arithmetic operators
  • Operators to increment and decrement numbers
  • Comparison operators
  • Logical operators
  • Return type of comparison and logical operators
  • Use for loops
  • Lab: Looping
  • Lab: Language Statements

Lesson: Using Strings

  • Create an instance of the String class
  • Test if two strings are equal
  • Get the length of a string Parse a string for its token components
  • Perform a case-insensitive equality test
  • Build up a string using StringBuffer
  • Contrast String, StringBuffer, and StringBuilder
  • Lab: Fun with Strings
  • Lab: Using StringBuffers and StringBuilders

Lesson: Specializing in a Subclass

  • Constructing a class that extends another class
  • Implementing equals and toString
  • Writing constructors that pass initialization data to parent constructor
  • Using instanceof to verify type of an object reference
  • Overriding subclass methods
  • Safely casting references to a more refined type
  • Lab: Creating Subclasses

Lesson: Fields and Variables

  • Discuss Block Scoping Rules
  • Distinguish between instance variables and method variables within a method
  • Explain the difference between the terms field and variable
  • List the default values for instance variables
  • Final and Static fields and methods
  • Lab: Field Test

Lesson: Using Arrays

  • Declaring an array reference
  • Allocating an array
  • Initializing the entries in an array
  • Writing methods with a variable number of arguments
  • Lab: Creating an Array

Lesson: Local-Variable Type Inference

  • Explain type inference
  • Infering types of local variables
  • The var reserved type name
  • Benefits of using var
  • Backward compatibilty
  • Lab: Using Local-Variable Type Inference (optional)

Lesson: Java Packages and Visibility

  • Use the package keyword to define a class within a specific package
  • Discuss levels of accessibility/visibility
  • Using the import keyword to declare references to classes in a specific package
  • Using the standard type naming conventions
  • Visibility in the Java Modular System
  • Correctly executing a Java application class

Session: Object Oriented Development

Lesson: Inheritance and Polymorphism

  • Write a subclass with a method that overrides a method in the superclass
  • Group objects by their common supertype
  • Utilize polymorphism
  • Cast a supertype reference to a valid subtype reference
  • Use the final keyword on methods and classes to prevent overriding
  • Lab: Salaries - Polymorphism

Lesson: Interfaces and Abstract Classes

  • Define supertype contracts using abstract classes
  • Implement concrete classes based on abstract classes
  • Define supertype contracts using interfaces
  • Implement concrete classes based on interfaces
  • Explain advantage of interfaces over abstract classes
  • Explain advantage of abstract classes over interfaces
  • Lab: Mailable - Interfaces

Session: Exception Handling

Lesson: Introduction to Exception Handling

  • Introduce the Exception architecture
  • Defining a try/catch blocks
  • Checked vs Unchecked exceptions
  • Lab: Exceptions

Lesson: Exceptions

  • Defining your own application exceptions
  • Automatic closure of resources
  • Suppressed exceptions
  • Handling multiple exceptions in one catch
  • Lab: Exceptional

Session: Java Developer's Toolbox

Lesson: Utility Classes

  • Introduce the wrapper classes
  • Explain Autoboxing and Unboxing
  • Converting String representations of primitive numbers into their primitive types
  • Defining Enumerations
  • Using static imports
  • Lab: Using Primitive Wrappers
  • Lab: Enumerations (optional)

Session: Advanced Java Programming

Lesson: Introduction to Generics

  • Generics and Subtyping
  • Bounded Wildcards
  • Generic Methods
  • Legacy Calls To Generics
  • When Generics Should Be Used
  • Lab: DynamicArray
  • Lab: Adding Generics to Dynamic Array (optional)

Lesson: Lambda Expressions and Functional Interface

  • Understanding the concept of functional programming
  • Writing lambda expressions
  • Understanding functionalinterfaces
  • Explore the difference between anonymous classes and lambda expressions

Session: Working with Collections

Lesson: Collections

  • Provide an overview of the Collection API
  • Review the different collection implementations (Set, List and Queue)
  • Explore how generics are used with collections
  • Examine iterators for working with collections
  • Lab: Create a simple Game using Collections

Lesson: Using Collections

  • Collection Sorting
  • Comparators
  • Using the Right Collection
  • Lambda expressions in Collections
  • Lab: Using Collections

Session: Stream API

Lesson: Streams

  • Understanding the problem with collections in Java
  • Thinking of program solutions in a declarative way
  • Use the Stream API to process collections of data
  • Understand the difference between intermediate and terminal stream operations
  • Filtering elements from a Stream
  • Finding element(s) within a Stream
  • Collecting the elements from a Stream into a List
  • Lab: Working with Streams

Lesson: Collectors

  • Using different ways to collect the items from a Stream
  • Grouping elements within a stream
  • Gathering statistics about numeric property of elements in a stream
  • Lab: Collecting

Session: The Java Module System

Lesson: Introduction to the Module System

  • Introduce Project Jigsaw
  • Classpath and Encapsulation
  • The JDK internal APIs
  • Java 9 Platform modules
  • Defining application modules
  • Define module dependencies
  • Implicit dependencies
  • Implied Readability
  • Exporting packages
  • Lab: Defining Modules

Additional Topics: Time Permitting
These topics will be included in your course materials but may or may not be presented during the live class depending on the pace of the course and attendee skill level and participation.

Lesson: Java Date/Time

  • The Date and Calendar classes
  • Introduce the new Date/Time API
  • LocalDate, LocalDateTime, etc.
  • Formatting Dates
  • Working with time zones
  • Manipulate date/time values
  • Lab: Agenda

Lesson: Java 12 and beyond

  • Overview of Java releases
  • LTS vs non-LTS versions
  • Overview of Records
  • Introducing Multi-line String
  • Exploring Switch expresions
  • Explaining Helpfull Nullpointers
  • Overview of Pattern Matching with instanceof
  • Introducing Sealed types

Course Materials

Course Materials: Each participant will receive a Student Guide with course notes, code samples, software tutorials, step-by-step written lab instructions, diagrams and related reference materials and resource links. Students will also receive the project files (or code, if applicable) and solutions required for the hands-on work.

Hands-on Setup Made Simple! Our dedicated tech team will work with you to ensure our ‘easy-access’ cloud-based or local installtion course environment is accessible, fully-tested and verified as ready to go well in advance of the course start date, ensuring a smooth start to class and effective learning experience for all participants. Please inquire for details and options.

Every-Course Extras = High-Value & Long-Term Learning Support! All courses also include our unique EveryCourse Extras package (Post-Course Resource Site access, Review Labs, Live Instructor Follow-on Support, Free *Live* Course Refresh Re-Takes, early access to Special Offers, Free Courses & more).

Raise the bar for advancing technology skills

Attend a Class!

Live scheduled classes are listed below or browse our full course catalog anytime

Special Offers

We regulary offer discounts for individuals, groups and corporate teams. Contact us

Custom Team Training

Check out custom training solutions planned around your unique needs and skills.

EveryCourse Extras

Exclusive materials, ongoing support and a free live course refresh with every class.

Attend a Course

Please see the current upcoming available open enrollment course dates posted below. Please feel free to Register Online below, or call 844-475-4559 toll free to connect with our Registrar for assistance. If you need additional date options, please contact us for scheduling.

Course Title Days Date Time Price
Fast Track to Java 11 Programming for OO Experienced Developers (C#, C++, etc.) 4 Days Apr 24 to Apr 27 10:00 AM to 06:00 PM EST $2,395.00 Enroll
Fast Track to Java 11 Programming for OO Experienced Developers (C#, C++, etc.) 4 Days Jun 26 to Jun 29 10:00 AM to 06:00 PM EST $2,395.00 Enroll
Fast Track to Java 11 Programming for OO Experienced Developers (C#, C++, etc.) 4 Days Aug 28 to Aug 31 10:00 AM to 06:00 PM EST $2,395.00 Enroll
Fast Track to Java 11 Programming for OO Experienced Developers (C#, C++, etc.) 4 Days Oct 16 to Oct 19 10:00 AM to 06:00 PM EST $2,395.00 Enroll
Fast Track to Java 11 Programming for OO Experienced Developers (C#, C++, etc.) 4 Days Dec 4 to Dec 7 10:00 AM to 06:00 PM EST $2,395.00 Enroll

Learning is Twice as Nice!
Buy One Get One Free!

Enroll by March 31 in any TWO public classes in 2023 for the price of ONE! 

Click for Details & Additional Offers

Learn. Explore. Advance!

Extend your training investment! Recorded sessions, free re-sits and after course support included with Every Course
Trivera MiniCamps
Gain the skills you need with less time in the classroom with our short course, live-online hands-on events
Trivera QuickSkills: Free Courses and Webinars
Training on us! Keep your skills current with free live events, courses & webinars
Trivera AfterCourse: Coaching and Support
Expert level after-training support to help organizations put new training skills into practice on the job

The voices of our customers speak volumes

Special Offers
Limited Offer for most courses.

SAVE 50%

Learn More