Accessing Protected Members in Java
Last Updated :
24 Sep, 2021
In Java, there are four types of access modifiers. These are public, private, default, and protected. To get the idea of these modifiers, you can refer to access modifiers in java. In this article, we discuss the accessibility of protected members in different cases.
Now let us discuss various scenarios of accessing protected members which are listed below as follows:
- Accessing in the same class
- Accessing in other classes of the same package
- Accessing protected members of a class in its subclass in the same package
- Accessing another class in a different package
- Accessing in sub-class in a different package
Case 1: Accessing protected members in the same class
We can access protected members of a class anywhere in it.
Example:
Java
// Java Program to Illustrate
// Accessing Protected Members
// in the same class
// Main class
class Sample {
protected int year = 2021;
protected void printYear()
{
System.out.println("Its " + year + " !!");
}
public static void main(String[] args)
{
Sample sample = new Sample();
System.out.println(sample.year);
sample.printYear();
}
}
Case 2: Accessing protected members in other classes of the same packageÂ
We can access protected members of a class in another class that is present in the same package.
Java
// Java Program to Illustrate Accessing
// Protected Members
// In Other Class of Same Package
// Class 1
class Sample {
protected int year = 2021;
protected void printYear() {
System.out.println("Its "+year+" !!");
}
}
// Class 2
public class Test {
// Main driver method
public static void main(String[] args) {
Sample sample = new Sample();
System.out.println(sample.year);
sample.printYear();
}
}
Case 3: Accessing protected members of a class in its subclass in the same packageÂ
We can access protected members of a class in its subclass if both are present in the same package.
ExampleÂ
Java
// Java Program to Illustrate
// Accessing Protected Members
// of a class in its subclass
// in the same package
// Class 1
class Sample {
static protected String title = "geekforgeeks";
protected int year = 2021;
protected void printYear() {
System.out.println("Its "+year+" !!");
}
}
// Class 2
public class Test extends Sample {
public static void main(String[] args) {
Sample sample = new Sample();
System.out.println(sample.year);
sample.printYear();
System.out.println(Sample.title);
}
}
Output2021
Its 2021 !!
geekforgeeks
Case 4: Accessing protected members in another class in a different packageÂ
We cannot access the protected members of a class in a class (non-subclass) that is present in a different package.Â
Example 1: Package 1Â
Java
// Java Program to Illustrate
// Accessing Protected Members
// In Another Class in a
// Different Package
// Package 1
package package1;
// Main class
public class Sample {
static protected String title = "geeksforgeeks";
protected int year = 2021;
// Protected method
protected void printYear() {
System.out.println("Its "+year+" !!");
}
}
Â
Example 2: Package 2Â
Java
// Java Program to Illustrate
// Accessing Protected Members
// In Another Class in a
// Different Package
// Package 1
package package2;
// Importing above package
import package1.Sample;
// Main class
public class Test {
// Main driver method
public static void main(String[] args) {
Sample sample = new Sample();
System.out.println(sample.year);
sample.printYear();
System.out.println(Sample.title);
}
}
Â
Output:Â Â
error: year has protected access in Sample
System.out.println(sample.year);
^
error: printYear() has protected access in Sample
sample.printYear();
^
error: title has protected access in Sample
System.out.println(Sample.title);
^
It will give a compile-time error. In the following example, we will create two classes. Sample class in package1 and Test class in package2 and try to access protected members of Sample class in Test class. It is justified in the above two examples.
Case 5: Accessing protected members in sub-class in a different package
We can access protected members of a class in its subclass present in a different package. In the following example, we will create two classes. Sample class in package1 and Child class in package2. Child class extends Sample class.
Example 1.1Â
Java
// Java Program to Illustrate Accessing Protected
// Members in sub-class in a different package
package package1;
// Class
public class Sample {
// Protected attributes
static protected String title = "geeksforgeeks";
protected int year = 2021;
protected void printYear()
{
System.out.println("Its " + year + " !!");
}
}
Â
Example 1.2Â
Java
// Java Program to Illustrate Accessing Protected
// Members in Sub-class in a different Package
package package2;
// Importing class from above package
import package1.Sample;
// Main class
public class Child extends Sample {
// Method 1
void helper()
{
System.out.println(year);
printYear();
System.out.println(Sample.title);
}
// Method 2
// Main driver method
public static void main(String[] args)
{
// Creating child class instance inside main()
Child child = new Child();
child.helper();
}
}
OutputÂ
2021
Its 2021 !!
geeksforgeeks
Note: From the above output it can be perceived we have successfully accessed the protected members directly as these are inherited by the Child class and can be accessed without using any reference. The protected members are inherited by the child classes and can access them as its own members. But we can't access these members using the reference of the parent class. We can access protected members only by using child class reference.Â
Example 2Â
Java
// Java Program to Illustrate Compile-time Error Thrown
// When we are Trying to Access Protected Members
// Using Parent Class Reference
// Importing packages
package package2;
import package1.Sample;
// Importing class extending to Parent class
public class Child extends Sample {
// Method 1
void helper()
{
// Creating instance of Child class inside main()
Child myself = new Child();
// As Child is sub-class of Sample, we can access
// the static variable here
System.out.println(Sample.title);
// This will compile fine as we are accessing year
// using child class reference variable
System.out.println(year);
System.out.println(myself.year);
// This will compile fine as we are accessing
// printYear() method using child class reference
// variable
printYear();
myself.printYear();
// Creating parent class object
Sample sample = new Sample();
// Parent class reference holding child class object
Sample child = new Child();
// Note: Below lines of code won't compile as we are
// trying to access protected members of parent
// class using Parent's class reference which is
// present in other package
// Errors will be thrown
System.out.println(sample.year);
sample.printYear();
child.printYear();
}
// Method 2
// Main driver method
public static void main(String[] args)
{
// Creating child class instance inside main()
Child child = new Child();
// Calling the above method 1 of child class
child.helper();
}
}
OutputÂ
error: year has protected access in Sample
System.out.println(sample.year);
^
error: printYear() has protected access in Sample
sample.printYear();
^
error: printYear() has protected access in Sample
child.printYear();
^
So the main difference between default access modifiers and the protected modifier is that default members are accessible only in the current package. While protected members can be accessed anywhere in the same package and outside package only in its child class and using the child class's reference variable only, not on the reference variable of the parent class. We can't access protected members using the parent class's reference.
Â
Similar Reads
Protected vs Final Access Modifier in Java
Whenever we are writing our classes, we have to provide some information about our classes to the JVM like whether this class can be accessed from anywhere or not, whether child class creation is possible or not, whether object creation is possible or not, etc. we can specify this information by usi
5 min read
Protected vs Package Access Modifiers in Java
Whenever we are writing our classes, we have to provide some information about our classes to the JVM like whether this class can be accessed from anywhere or not, whether child class creation is possible or not, whether object creation is possible or not, etc. we can specify this information by usi
4 min read
Protected vs Private Access Modifiers in Java
Access modifiers are those elements in code that determine the scope for that variable. As we know there are three access modifiers available namely public, protected, and private. Let us see the differences between Protected and Private access modifiers. Access Modifier 1: Protected The methods or
2 min read
Public vs Protected Access Modifier in Java
Whenever we are writing our classes, we have to provide some information about our classes to the JVM like whether this class can be accessed from anywhere or not, whether child class creation is possible or not, whether object creation is possible or not, etc. we can specify this information by usi
4 min read
Private vs Protected vs Final Access Modifier in Java
Whenever we are writing our classes, we have to provide some information about our classes to the JVM like whether this class can be accessed from anywhere or not, whether child class creation is possible or not, whether object creation is possible or not, etc. we can specify this information by usi
5 min read
Private vs Final Access Modifier in Java
Whenever we are writing our classes we have to provide some information about our classes to the JVM like whether this class can be accessed from anywhere or not, whether child class creation is possible or not, whether object creation is possible or not etc. we can specify this information by using
3 min read
Non-Access Modifiers in Java
Modifiers are specific keywords present in Java using which we can make changes to the characteristics of a variable, method, or class and limit its scope. Java programming language has a rich set of Modifiers. Modifiers in Java are divided into two types - Access Modifiers and Non-Access modifiers.
12 min read
Accessing Grandparentâs member in Java using super
Directly accessing Grandparent's member in Java: Predict the output of the following Java program. Java // filename Main.java class Grandparent { public void Print() { System.out.println("Grandparent's Print()"); } } class Parent extends Grandparent { public void Print() { System.out.print
2 min read
Protected Keyword in Java with Examples
Access modifiers in Java help to restrict the scope of a class, constructor, variable, method, or data member. There are four types of access modifiers available in java. The access of various modifiers can be seen in the following table below as follows:Â The protected keyword in Java refers to one
5 min read
Public vs Private Access Modifiers in Java
Whenever we are writing our classes we have to provide some information about our classes to the JVM like whether this class can be accessible from anywhere or not, whether child class creation is possible or not, whether object creation is possible or not etc. we can specify this information by usi
3 min read