Java private Keyword
Example
A class withprivate attributes:
public class Main { private String fname = "John"; private String lname = "Doe"; private String email = "john@doe.com"; private int age = 24; public static void main(String[] args) { Main myObj = new Main(); System.out.println("Name: " + myObj.fname + " " + myObj.lname); System.out.println("Email: " + myObj.email); System.out.println("Age: " + myObj.age); }}Definition and Usage
Theprivate 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 ourJava Modifiers Tutorial.

