Home » Java Basics
2

Java Concepts

The basic concepts and syntax of Java

An aspiring Java developer should first become familiar with the basic concepts and syntax of Java. We briefly went over the concept of object oriented programming in the previous chapter, where we learned that Java programs use software objects to model entities. To recap, software objects hold information about both the current state usually represented by the values of the object's properties, and the object behavior described by the methods that may be used to simulate specific types of actions.

In This Chapter:

Inheritance in Java
Similar entities grouped together as objects in Java
Variables
Words that hold a value of a data type or class
Operators
The use of operators to manipulate variables
Expressions and Operator Precedence in Evaluation
Simple and complex expressions and their variables and operators
Control Flow Statements
The definition and usage of control flow statements in java