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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T00:25:27+00:00 2026-05-13T00:25:27+00:00

Why is the super() constructor recommended to be called when extending any of the

  • 0

Why is the super() constructor recommended to be called when extending any of the RIM Screen classes? It was my understanding that the no-arg constructor of any super class was implicitly called from any class that extends it, am I wrong?

  • 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-13T00:25:27+00:00Added an answer on May 13, 2026 at 12:25 am

    super() will be called by default constructor no matter if you implement it or not.

    It’s easy to test. Just a couple classes:

    class ClassA {
        public ClassA() {
            UiApplication.getUiApplication().invokeLater(new Runnable() {
                public void run() {
                    Dialog.inform("ClassA()");
                }
            });
        }
    }
    
    class ClassB extends ClassA {
        public ClassB() {
            super();
            UiApplication.getUiApplication().invokeLater(new Runnable() {
                public void run() {
                    Dialog.inform("ClassB()");
                }
            });
        }
    }
    
    class ClassC extends ClassA {
    
    }
    
    class ClassD extends ClassA {
        public ClassD() {
            UiApplication.getUiApplication().invokeLater(new Runnable() {
                public void run() {
                    Dialog.inform("ClassD()");
                }
            });
        }
    }
    

    And test app:

    class Scr extends MainScreen {
    
        protected void makeMenu(Menu menu, int instance) {
            super.makeMenu(menu, instance);
    
            menu.add(new MenuItem("class A", 0, 0) {
                public void run() {
                    ClassA a = new ClassA();
                }
            });
            menu.add(new MenuItem("class B", 0, 0) {
                public void run() {
                    ClassB b = new ClassB();
                }
            });
            menu.add(new MenuItem("class C", 0, 0) {
                public void run() {
                    ClassC c = new ClassC();
                }
            });
            menu.add(new MenuItem("class D", 0, 0) {
                public void run() {
                    ClassD d = new ClassD();
                }
            });
        }
    }
    

    So you see, there is no difference between dialog calls in ClassA() and ClassC(), also no diffs between ClassB() and ClassD().

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

Sidebar

Related Questions

I was of the opinion that virtualization doesnt work in the super class constructor
super() is implicitly placed in every constructor so that it acquires the methods mentioned
Super-newbie question! I've been looking for a list of all the classes that come
I'm trying to unit-test some classes that make use of a Singleton class whose
Given that I have a class Base that has a single argument constructor with
What are the C++ rules for calling the base class constructor from a derived
If a class Sub is calling its base class Super's constructor, is there a
how can i call super constructor from the inheriting object? for example, i have
I have a class, being injected by guice and this class constructor invokes super,
Super weird problem here. I'm having trouble getting jQuery to bind any selectors except

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.