Core Java Training
This course introduces computer programming using the JAVA programming language with object-oriented programming principles. Emphasis is placed on event-driven programming methods, including creating and manipulating objects, classes, and using object-oriented tools such as the class debugger. Upon completion students should be able to design, code, test, and debug JAVA language programs.
LEARNING OUTCOMES:
Upon completing requirements for this course, the student will be able to:
A. Create a software application using the Java programming language.
B. Debug a software application written in the Java programming language.
C. Test a software application written in the Java programming language.
Introduction to Java Programming
1. Course Introduction
Course Objectives
Course Overview
2. Getting Started with Java
What is Java?
How to Get Java
A First Java Program
3. Eclipse
Introduction to Eclipse
Installing Eclipse
Running Eclipse for the First Time
Editors, Views, and Perspectives
Setting up a Project
Creating a New Java Application
Running a Java Application
Debugging a Java Application
4. Language Fundamentals
A Java Program
If Statements
Switch Statements
Loop Statements
Syntax Details
Primitive Datatypes
Variables
Expressions in Java
Strings
Arrays
Enhanced for Loop
5. Objects and Classes
Defining a Class
Creating an Object
Instance Data and Class Data
Methods
Constructors
Access Modifiers
Encapsulation
6. Using Java Objects
Printing to the Console
printf Format Strings
StringBuilder and StringBuffer
Methods and Messages
toString
Parameter Passing
Comparing and Identifying Objects
Destroying Objects
The Primitive-Type Wrapper Classes
Enumerated Types
7. Inheritance in Java
Inheritance
Inheritance in Java
Casting
Method Overriding
Polymorphism
super
The Object Class
8. Advanced Inheritance and Generics
Abstract Classes
Interfaces
Using Interfaces
Collections
Generics
Comparable
9. Packages
Packages
The import Statement
Static Imports
Defining Packages
Package Scope
10. Exception Handling
Exceptions Overview
Catching Exceptions
The finally Block
Exception Methods
Declaring Exceptions
Defining and Throwing Exceptions
Errors and RuntimeExceptions
11. Core Collection Classes
The Collections Framework
The Set Interface
Set Implementation Classes
The List Interface
List Implementation Classes
The Map Interface
Map Implementation Classes
12.Collection Sorting
Sorting with Comparable
Sorting with Comparator
Sorting Lists and Arrays
Collections Utility Methods
13. Multithreading
What is multithreading
Creation of threads
Thread lifecycle
Methods for inter thread communication
How to write code with multithreading