Please note, this is a STATIC archive of website www.w3schools.com from 05 May 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
THE WORLD'S LARGEST WEB DEVELOPER SITE

Java private Keyword

❮ Java Keywords


Example

A class with private attributes:

public class Person {
  private String fname = "John";
  private String lname = "Doe";
  private String email = "[email protected]";
  private int age = 24;

  public static void main(String[] args) {
    Person myObj = new Person();
    System.out.println("Name: " + myObj.fname + " " + myObj.lname);
    System.out.println("Email: " + myObj.email);
    System.out.println("Age: " + myObj.age);
  }
}

Run example »


Definition and Usage

The private keyword is an access modifier used for attributes, methods and constructors, making them only accessible within the declared class.


Related Pages

Read more about modifiers in our Java Modifiers Tutorial.


❮ Java Keywords