


Can Subclasses in Different Packages Directly Access a Superclass's Protected Members?
Understanding Protected Access in Java
In Java, the protected modifier is intended to allow access to certain members within the same package and to subclasses in other packages. However, a common misconception arises when accessing protected members from an instance of the superclass outside the subclass.
Consider the following example:
// Class A package package1; public class A { protected int protectedInt = 1; } // Class C package package2; import package1.A; public class C extends A { public void go() { A a = new A(); System.out.println(a.publicInt); System.out.println(a.protectedInt); // Eclipse underlines this line } }
Eclipse raises an error on the line where a.protectedInt is accessed, claiming it is not visible. This seems to contradict the definition of protected in Java: "The protected modifier specifies that the member can only be accessed within its own package (as with package-private) and, in addition, by a subclass of its class in another package."
Resolving the Misconception
The key to understanding this behavior lies in the definition of protected, as it only applies to subclasses. Specifically, accessing protected members is permitted only within the body of a subclass.
Therefore, the protected member protectedInt can be accessed from within Class C, but only for instances of Class C itself or instances of subclasses of Class C. It cannot be accessed directly from instances of the superclass, even though they are within the same package.
To resolve the error in the go method, you would need to create an instance of Class C instead of Class A:
C c = new C(); System.out.println(c.publicInt); System.out.println(c.protectedInt);
This will correctly access the protected member through the subclass instance.
The above is the detailed content of Can Subclasses in Different Packages Directly Access a Superclass's Protected Members?. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics











Troubleshooting and solutions to the company's security software that causes some applications to not function properly. Many companies will deploy security software in order to ensure internal network security. ...

Solutions to convert names to numbers to implement sorting In many application scenarios, users may need to sort in groups, especially in one...

Field mapping processing in system docking often encounters a difficult problem when performing system docking: how to effectively map the interface fields of system A...

Start Spring using IntelliJIDEAUltimate version...

When using MyBatis-Plus or other ORM frameworks for database operations, it is often necessary to construct query conditions based on the attribute name of the entity class. If you manually every time...

Conversion of Java Objects and Arrays: In-depth discussion of the risks and correct methods of cast type conversion Many Java beginners will encounter the conversion of an object into an array...

Detailed explanation of the design of SKU and SPU tables on e-commerce platforms This article will discuss the database design issues of SKU and SPU in e-commerce platforms, especially how to deal with user-defined sales...

How does the Redis caching solution realize the requirements of product ranking list? During the development process, we often need to deal with the requirements of rankings, such as displaying a...
