Example
A class containing private attributes:
public class Main {
private String fname = "John";
private String lname = "Doe";
private String email = "[email protected]";
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
The “private” keyword serves as an access modifier for attributes, methods, and constructors, restricting their accessibility solely within the declared class.