S07L24 – Access modifiers in Java with inheritance

Access Modifiers in Java with Inheritance

Table of Contents

  • Introduction
  • Access Modifiers Overview
    • Public
    • Private
    • Default
    • Protected
  • Access Modifiers and Inheritance
  • Comparison of Access Modifiers
  • Access Modifiers Syntax
  • Practical Java Program
  • Best Practices
  • Conclusion
  • SEO Keywords

Introduction

In Java, access modifiers are fundamental to controlling the visibility and accessibility of classes, methods, and variables. Whether you are building a small program or a large-scale system, proper usage of access modifiers ensures that your code is organized, secure, and easy to maintain.

In this article, you will learn:

  • The role of Java access modifiers.
  • Their use in inheritance.
  • Real-world coding examples.
  • Best practices for clean code.

Access Modifiers Overview

What are Access Modifiers?

In Java, access modifiers control which other classes or packages can access a specific class, method, or variable. These modifiers enforce encapsulation, a core principle of object-oriented programming.

Types of Access Modifiers

Access Modifier Class Package Subclass World
public
protected
default
private

When and Where to Use:

Situation Recommended Access Modifier
Public APIs or Utility Classes public
Sensitive information restricted to class private
Shared within the same package default
Shared with subclasses protected

Access Modifiers and Inheritance

When using inheritance, access modifiers significantly influence the visibility of superclass members inside subclasses.

Member Type Same Package (Subclass) Different Package (Subclass)
public
protected
default
private

Syntax and Code Explanation

Syntax Example

Practical Java Program (From Project Files)

File 1: Base.java

File 2: Sub.java

File 3: Main.java

Code Explanation (Step by Step)

  • The class Base defines variables with all four types of access modifiers.
  • The show() method in Base prints all variables, even the privateVar since it’s in the same class.
  • The subclass Sub tries to access these variables:
    • privateVar: ❌ Not accessible.
    • defaultVar: ✔ Accessible if in the same package.
    • protectedVar: ✔ Accessible due to protected.
    • publicVar: ✔ Accessible universally.
  • The Main class creates instances of both Base and Sub and calls their show() methods.

Program Output:

Best Practices for Access Modifiers

  • Use private for variables unless you have a strong reason not to.
  • Use protected when subclasses need access.
  • Avoid public fields directly, prefer using getters/setters.
  • Keep default access for package-level utility classes.
  • Don’t forget to update access modifiers when refactoring.

Conclusion

Access modifiers are the foundation of secure and organized Java applications. They help:

  • Maintain encapsulation.
  • Control access between classes and packages.
  • Build scalable and maintainable codebases.

By understanding how to use public, protected, default, and private correctly—especially in inheritance—you’ll be able to write professional and clean Java code.

Share your love