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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T06:09:11+00:00 2026-06-13T06:09:11+00:00

So, I have an abstract class acting as a parent class, here’s what I

  • 0

So, I have an abstract class acting as a parent class, here’s what I want to happen.

In abstract class:

public void run(){
    while(!booleanStatement){
        //do specific stuff here
    }
}

In child class:

public class extends parentClass{
public void run(){
    //do child stuff here effected by the while loop above
}

Is there any way to make this happen? super() maybe?

  • 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-13T06:09:12+00:00Added an answer on June 13, 2026 at 6:09 am

    Sure. Just define an additional abstract method:

    public final void run(){
      while(!booleanStatement){
        doRun();
      }
    }
    
    public abstract void doRun();
    

    In this scenario the subclass can’t overwrite run() and is forced to provide an implementation for doRun() which does the work inside the loop.

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

Sidebar

Related Questions

If I have abstract class Parent { static object staticLock = new object(); public
I have abstract class public abstract class BaseClass { public delegate void ContextMenuClickHandler(object sender,
I have an abstract class as defined here: public abstract class BaseClientService<T> where T
I have abstract class: public abstract ClassA { protected abstract void method1 {...} Another
Suppose we have abstract class A (all examples in C#) public abstract class A
I have abstract BaseController, which basically looks like below: public abstract class BaseController :
I have an abstract class that implements IDisposable, like so: public abstract class ConnectionAccessor
I have one abstract class -let's say myBase. And I want all the classes
I have an abstract class with a pure virtual function f() and i want
I have an abstract class public abstract class Integrator { public abstract Point integrate();

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.