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

  • Home
  • SEARCH
  • 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 6089311
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T12:05:07+00:00 2026-05-23T12:05:07+00:00

I have an java interface which has few abstract methods. public interface Interface {

  • 0

I have an java interface which has few abstract methods.

public interface Interface {
    void test();
    void test1();
}

Now I have a class A that implements Interface. Requirement is I want to extend class A to multiple client classes. Class A should implement test(). Now I want class A should keep test1 abstract and the implementation of test1 should be done in clients of class A. Is it possible to achieve this in Java. If yes, can somebody correct way to implement this requirement ?

  • 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-05-23T12:05:08+00:00Added an answer on May 23, 2026 at 12:05 pm

    First of all, every method is an interface is public and abstract by default. You have no choice.

    Here’s how I’d write it, with better names:

    public interface A {
        void test1();
        void test2();
    }
    
    public abstract class B implements A {
    {
        public void test1() { // do something here; concrete implementation }
        // Note: Nothing for test2.  
        // Compiler doesn't complain because it's an abstract class, and this is an abstract method.
    }
    
    public class C extends B {
        // Note: nothing for test1 - get it from abstract superclass
        // Note: compiler will complain if nothing is done to implement test2(), because C isn't abstract
        public void test2() { // do something here; concrete implementation }
    }
    

    Class C can override test1() if it chooses to, but if nothing is done it’ll inherit the behavior specified in class B.

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

Sidebar

Related Questions

If I have an object implementing the Map interface in Java and I wish
An enum in Java implements the Comparable interface. It would have been nice to
I'm having a small problem in Java. I have an interface called Modifiable. Objects
Does Java have a built-in way to escape arbitrary text so that it can
Does Java have a data type that represents a period of time eg 34
I have a Java swing application with a panel that contains three JComboBoxe s
I have Java and Flash client applications. What is the best way for the
Here is what I have: JAVA_HOME=C:\Software\Java\jdk1.5.0_12 (points to JDK 5.0) In Eclipse Installed Runtimes
Does Java have buffer overflows? If yes can you give me scenarios?
I have done Java and JSP programming in the past, but I am new

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.