Curriculum
Course: Java Basic
Login

Curriculum

Java Basic

Java Home

0/1

Java Introduction

0/1

Java Get Started

0/1

Java Syntax

0/1

Java Comments

0/1

Java Type Casting

0/1

Java Operators

0/1

Java Booleans

0/1

Java Switch

0/1

Java Break / Continue

0/1

Java Errors and Exception

0/1
Text lesson

var

Example

Use the keyword var to declare variables.

public class Main {
  public int test = 10;
   public static void main(String[] args) {
    var x = 5;
    var main = new Main();
    System.out.println(x);
    System.out.println(main.test);
  }
}

Definition and Usage

The var keyword allows a variable to be initialized without explicitly declaring its type. The variable’s type is inferred from the type of the data assigned to it.

Java 10 introduced the var keyword.