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 8726675
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T08:17:51+00:00 2026-06-13T08:17:51+00:00

How would one go about defining a method in a super class but leave

  • 0

How would one go about defining a method in a super class but leave the implementation to the sub classes?

  • 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-13T08:17:52+00:00Added an answer on June 13, 2026 at 8:17 am

    Leave the method abstract:

    abstract class A {
        abstract void doStuff();
    }
    
    class B extends A {
        void doStuff() {
            // stuff
        }
    }
    

    Note that…

    If a class includes abstract methods, the class itself must be declared abstract

    Abstract classes can’t be constructed (so new A() would be an error, but new B() would be fine), and subclasses need to implement all abstract methods unless they’re also abstract.

    abstract class A {
        abstract void doStuff();
    }
    
    abstract class B extends A {
        // This is fine since B is abstract
    }
    
    class C extends A {
        // This is an error since doStuff() isn't implemented
    }
    

    With an abstract class, you can mix abstract and normal methods:

    abstract class A {
        abstract void doStuff();
    
        void doOtherStuff() {
            // Subclasses don't need to implement this
        }
    }
    

    If all of the methods are abstract, it may make more sense to use an interface, since classes an implement multiple interfaces:

    interface DoesStuff {
        void doStuff();
    }
    
    interface DoesOtherStuff {
        void doOtherStuff();
    }
    
    class B implements DoesStuff, DoesOtherStuff {
        void doStuff() {
            // stuff
        }
    
        void doOtherStuff() {
            // other stuff
        }
    }
    

    Note: Methods in an interface are automatically abstract and public, unlike methods in classes, which are by default package private and not abstract.

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

Sidebar

Related Questions

How would one go about defining something like this in an xsd? <start> <request
How would one go about in subclassing a class in jQuery? Specifically, I want
How would one go about either using the 3D components of WPF or using
How would one go about proving to management that a batch reformat of all
How would one go about writing a query that selects items 2000-2010 out of
How would one go about specifying an offset for auto-naming the individual output files?
How exactly would one go about getting an OpenGL app to run fullscreen straight
Conceptually speaking how would one go about writing an achievement system for a website
I was wondering how one would go about developing a website from scratch with
I would like to know how one goes about adding functionality from one open

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.