DEV Community

Cover image for Code Smell 256 - Mutable Getters
Maxi Contieri
Maxi Contieri

Posted on • Originally published at maximilianocontieri.com

Code Smell 256 - Mutable Getters

Using getters is a significant issue. Exposing internals is a major problem

TL;DR: Don't expose your internals and lose control

Problems

  • Mutability

  • Unexpected Changes

  • Ripple Effects

  • Thread unsafety

  • Encapsulation Principle violation

Solutions

  1. Return shallow copies of your collections

Context

Immutable objects are essential in functional and object-oriented programming.

Once created, their state cannot be altered.

This is key to keeping object integrity and ensuring thread safety in multithreaded applications.

Mutable getters allow callers to access and modify the internal state of an object, leading to potential corruption and unexpected behavior.

When you break encapsulation, you take responsibility away from an object. Integrity is lost.

Returning a page in a book is like an immutable copy. It cannot be edited, like a human memory.

You can edit some memories by bringing them from long-term memory.

Sample Code

Wrong

public class Person {
    private List<String> hobbies;

    public Person(List<String> hobbies) {
        this.hobbies = hobbies;
    }

    public List<String> getHobbies() {
        return hobbies;
    }
}
Enter fullscreen mode Exit fullscreen mode

Right

public class Person {
    private List<String> hobbies;

    public Person(List<String> hobbies) {
        this.hobbies = new ArrayList<>(hobbies);
    }

    public List<String> hobbies() {
        // This returns a shallow copy
        // This is usually not a big performance issue
        return new ArrayList<>(hobbies);
    }
}
Enter fullscreen mode Exit fullscreen mode

Detection

[X] Semi-Automatic

You can detect mutable getters by examining the return types of your getters.

If they return mutable collections or objects, you need to refactor them to return immutable copies or use immutable data structures.

Tags

  • Mutability

Level

[x] Intermediate

AI Generation

AI generators might create this smell if they prioritize simplicity and brevity over best practices.

They not always consider the implications of returning mutable objects.

AI Detection

AI tools can detect this smell if you instruct them to look for getters returning mutable objects or collections.

They can suggest returning copies or using immutable types to fix the issue.

Conclusion

Getters are a code smell, but something you need to return objects you hold.

You can do it at your own risk, but retain the tracking of those collections.

Avoid mutable getters to protect your object integrity and encapsulation.

By returning immutable copies or using immutable types, you can prevent unintended modifications and ensure your objects remain reliable and predictable.

Relations

More Info

Disclaimer

Code Smells are my opinion.

Credits

Photo by Suzanne D. Williams on Unsplash


The best programmers write only easy programs.

Michael A. Jackson


This article is part of the CodeSmell Series.

Top comments (1)

Collapse
 
raajaryan profile image
Deepak Kumar

Hello everyone,

I hope you're all doing well. I recently launched an open-source project called the Ultimate JavaScript Project, and I'd love your support. Please check it out and give it a star on GitHub: Ultimate JavaScript Project. Your support would mean a lot to me and greatly help in the project's growth.

Thank you!