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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T02:26:04+00:00 2026-06-06T02:26:04+00:00

Considering that simple java code which would not work: public class Bar extends AbstractBar{

  • 0

Considering that simple java code which would not work:

public class Bar extends AbstractBar{

    private final Foo foo = new Foo(bar);

    public Bar(){
        super(foo);
    }
}

I need to create an object before the super() call because I need to push it in the base class.

I don’t want to use an initialization block and I don’t want to do something like:

super(new Foo(bar)) in my constructor..

How can I send data to a base class before the super call ?

  • 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-06T02:26:06+00:00Added an answer on June 6, 2026 at 2:26 am

    If Foo has to be stored in a field, you can do this:

    public class Bar extends AbstractBar{    
        private final Foo foo;
    
        private Bar(Foo foo) {
            super(foo);
            this.foo = foo;
        }
    
        public Bar(){
            this(new Foo(bar));
        }
    }
    

    Otherwise super(new Foo(bar)) looks pretty legal for me, you can wrap new Foo(bar) into a static method if you want.

    Also note that field initializers (as in your example) and initializer blocks won’t help either, because they run after the superclass constructor. If field is declared as final your example won’t compile, otherwise you’ll get null in superclass constructor.

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

Sidebar

Related Questions

Considering that the two machine's time settings are not synced, is it still possible
I would like to know , considering that Clojure uses 32-bit hash for its
I have a question considering a program that stimulates a stack (not using any
I'm working on a project, written in Java, which requires that I build a
I need to develop a simple daemon in java that takes files from a
Considering the fact that all applications will interact with the web project (which will
Considering that I have a Schema named SBST I want to find all empty
considering that metric is delay in distance vector routing algorithm, is it possible that
I'm trying to create programmability a home shortcut for any installed application. Considering that
I'm considering a project that involves the browser user being able to screen capture

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.