Java Basics

Ludovic Deneuville

First of all

Important

In Java, all executable code must be inside a class.

Hello World

HelloWord.java
class HelloWorld {
    public static void main(String[] args) { 
        String message = "Hello World!";
        System.out.println(message);
    }
}
  • compile: javac HelloWord.java
    • create file HelloWord.class
  • run: java HelloWord
  • exit: CTRL + C

Syntax

  • A Line of code ends with a semicolon ;
  • Blocs are delimited with curly braces: { }
  • Comments
    • // one line
    • /* multi-lines */

Naming Conventions

  • Classes: PascalCase
  • Variables, Methods: camelCase
  • Constants: UPPERCASE_WITH_UNDERSCORES
  • Packages: lowercase, dot-separated
    • package com.example.utils;

Variables and Data Types

int age = 25;
final double PI = 3.14;        // final : Immutable

boolean isJavaFun = true;

char grade = 'A';             // single quote
String name = "Léa";          // double quote

var i = 2F;                   // type inference -> float

Boolean

boolean isJavaFun = true;
boolean hasBrother = false;

boolean isFast = 20 > 15;

isJavaFun && !false || true;

String

String myString = "Java";
String fullName = "Alain" + " " + "Philippe";   // concat

myString.length();
myString.charAt(0);          // Get character at index 0
myString.contains("va");
myString.toLowerCase();      // also toUpperCase
myString.endsWith("Java");   // also startsWith

myString.equals("Java");     // Use equals to compare, not ==

Others: replace(), split()

Type casting

double num1 = 9.78;
int num2 = (int) num1;                   // Casting Narrowing

String str1 = "123";
int num1 = Integer.parseInt(str1);       // String to int

String str2 = String.valueOf(num1);      // int to String
String str3 = num1 + ""

toString() for Object types

Print

  • System.out.print("Hello");
  • System.out.println("Hello");
    • adds a new line
  • System.out ➡️ Standard output stream

Structures

if-else

int number = 10;

if (number > 0) {
    System.out.println("Positive number");
} else if (number < 0) {
    System.out.println("Negative number");
} else {
    System.out.println("Zero");
}

Ternary Operator

  • Shorter alternative to if-else
String status = (number > 0) ? "Positive" : "Negative";

Switch

String fruit = "lemon";

switch (fruit) {
    case "cherry", "strawberry" -> System.out.println("Red fruit");
    case "banana", "lemon" -> System.out.println("Yellow fruit");
    default -> System.out.println("Unknown fruit");
}

For

for (int i = 0; i < 5; i++) {
    System.out.println("Iteration: " + i);
}
  • initialization: i = 0
  • condition: i < 5
  • update: i++

For each

  • Iterating through arrays, lists
int[] numbers = {1, 2, 3, 4};

for (int num: numbers) {
    System.out.println(num);
}

While

int i = 10;
while (i >= 0) {
    System.out.println(i);
    i--;
}

break / continue

for (int i = 0; i < 10; i++) {
    if (i == 2)
        continue;
    else if (i == 4)
        break;
    System.out.println("Iteration: " + i);
}


Iteration: 0
Iteration: 1
Iteration: 3

Function

public int add(int a, int b) {
    return a + b;
}
  • Access modifier: public
  • Return type: int
  • Method name: add
  • Parameters: (int a, int b)

Void

  • Indicate that a method does not return any value
public void printIsOdd(int n) {
    System.out.println(n % 2 != 0);
}

Access Modifiers

Methods and Attributes Accessiblility

Modifier Same Class Same Package Subclasses Everywhere
public
protected
default (no modifier)
private

Various

int i = 0;

i++;                // increment by 1
i += 3;             // i = i + 3 

Math.sqrt(3);
Math.max(8, 5);
Math.pow(2, 10);   // 1024