Java Overview #

JDK #

JVM #

JRE #

Anatomy of a Java Program #

Getting started with a hello-world Java application #

javac Main.java
java Main

Scopes #

  1. Method scope

Variables defined within a method are accessible anywhere following within a method

  1. Block scope

Variables defined within curly braces cannot be accessed outside those curly braces

Interfaces #

Abstract Class #

Source File Declaration Rules #

Access Modifiers #