Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8349421
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T07:59:38+00:00 2026-06-09T07:59:38+00:00

In java I need to prevent Level1 class (look at following sample code) from

  • 0

In java I need to prevent Level1 class (look at following sample code) from being derived for more than two levels. Deriving till Level2 and Level3 is fine but if class is derived by Level4 then exception should be thrown. Look at following code sample.

Code sample:

class Level1 {
    private int level = 1;

    protected Level1() throws RuntimeException {
        level++;
        //System.out.println(level);
        if (level > 2) {
            throw new RuntimeException("Can't implement more than 2 levels");
        }
    }
}

class Level2 extends Level1 {
    protected Level2() {
    }
}

class Level3 extends Level2 {
    Level3() {
    }
}

class Level4 extends Level3 {
    Level4() {
    }
}

From above code sample I am not proposing solution using static int level counter. I am just trying to explain the issue.

Is it possible in Java by implementing some logic or by using some API where Level1 base class can count number of levels it has been derived?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T07:59:39+00:00Added an answer on June 9, 2026 at 7:59 am

    introspection api can help you handle that, try something like :

    protected Level1() throws RuntimeException {
            if (getClass().equals(Level1.class)) {
                return;
            }
    
            if (getClass().getSuperclass().equals(Level1.class)) {
                return; // first level or inheritance
            }
    
            if (getClass().getSuperclass().getSuperclass().equals(Level1.class)) {
                return; // second level or inheritance
            }
            // else
            throw new RuntimeException("Can't implement more than 2 levels");
        }
    

    by the way, why do you want to do that ?

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need the java code snippet for the below logic: Following is a string
I need to prevent users from starting my Java application (WebStart Swing app) multiple
I need to prevent a certain application function from being run concurrently with itself.
In java I need to make a Calendar object from a String in the
I need a Java code to find the length of a formatted decimal. Eg
I need a Java class to submit tickets to BMC Remedy's Helpdesk product. Wondering
I need a java program to download a series of file from a web
I need to create mysql stored procedure which makes more than one insert at
I need to prevent user from selecting text (select all or select a portion
Question:- Does java client need to worry about multiple servers ? Meaning:- I have

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.