Code Smell 290 - Refused Bequest

Written by mcsee | Published 2025/02/12
Tech Story Tags: clean-code | javascript | code-smells | learning-to-code | refactoring | refused-bequest | subclasses | bijection

TLDRSubclasses should honor ALL their parentโ€™s contract.via the TL;DR App

When you ignore your inheritance, you will have trouble with your parents

TL;DR: Subclasses should honor ALL their parentโ€™s contract.

Problems ๐Ÿ˜”

Solutions ๐Ÿ˜ƒ

  1. Favor composition over inheritance
  2. Don't subclassify for code reuse
  3. Rethink hierarchy
  4. Extract shared logic
  5. Use interfaces
  6. Remove dead code

Refactorings โš™๏ธ

Refactoring 007 - Extract Class

Context ๐Ÿ’ฌ

When you create a subclass, it should use or extend the behavior of its parent.

If it ignores or overrides most of it, you probably force inheritance where it doesnโ€™t belong to reuse code.

This makes the code misleading and hard to maintain.

Sample Code ๐Ÿ“–

Wrong ๐Ÿšซ

class House {
  constructor(address) {
    this.address = address;
  }
  address() {
    return this.address;
  }
  openDoor() {
    console.log("Door opened at " + this.address);
  }
}

class Motorhome extends House {
  constructor() {
    super(null);
  }
  address() {
    return null;
    // This implementation is the same as the parent's
    // and is also a refused bequest
  }
  openDoor() {
    console.log("Motorhome door opened.");
  }
}

Right ๐Ÿ‘‰

class House {
  constructor(address) {
    this.address = address;
  }
  address() {
    return this.address;
  }
  openDoor() {
    console.log("Door opened at " + this.address);
  }
}

class Motorhome {
  // does not inherit from House
  constructor(gps) {
    this.gps = gps;
  }
  openDoor() {
    console.log("Motorhome door opened at " + this.gps.getLocation());
  }
}

Detection ๐Ÿ”

  • [x]Manual

Look for subclasses that override or ignore most of their parentโ€™s behavior.

You should reconsider the inheritance if a subclass sets parent properties to null or reimplements core methods.

Tags ๐Ÿท๏ธ

  • Inheritance

Level ๐Ÿ”‹

  • [x]Intermediate

Why the Bijection Is Important ๐Ÿ—บ๏ธ

Your software should reflect real-world relationships.

When you force a subclass that doesnโ€™t logically extend its parent in the Bijection, you mislead developers and introduce maintenance problems.

AI Generation ๐Ÿค–

AI can generate this smell when it defaults to inheritance for reuse instead of composition.

This happens when AI follows generic templates without understanding the context.

AI Detection ๐Ÿฅƒ

AI can detect this smell by analyzing class structures and inheritance trees. However, it struggles with subtle cases where inheritance initially seems valid but breaks expectations.

Try Them! ๐Ÿ› 

Remember: AI Assistants make lots of mistakes

Without Proper Instructions

With Specific Instructions

ChatGPT

ChatGPT

Claude

Claude

Perplexity

Perplexity

Copilot

Copilot

Gemini

Gemini

DeepSeek

DeepSeek

Meta AI

Meta AI

Conclusion โœ”๏ธ

When you design a class hierarchy, you need to make sure that subclasses logically inherit from their parent.

If a subclass refuses some of the behavior, you should rethink your design.

Relations ๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ

Code Smell 11 - Subclassification for Code Reuse

Code Smell 58 - Yo-yo Problem

Code Smell 43 - Concrete Classes Subclassified

More Information ๐Ÿ“•

Refactoring Guru

Code Smells

Disclaimer ๐Ÿ“˜

Code Smells are my opinion.

Credits ๐Ÿ™

Photo by Hanson Lu on Unsplash


Favor object composition over class inheritance.

Erich Gamma

Software Engineering Great Quotes


This article is part of the CodeSmell Series.

How to Find the Stinky Parts of your Code



Written by mcsee | Iโ€™m a sr software engineer specialized in Clean Code, Design and TDD Book "Clean Code Cookbook" 500+ articles written
Published by HackerNoon on 2025/02/12