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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T22:52:27+00:00 2026-05-26T22:52:27+00:00

Are constructors inherited or do they belong to the class they are defined in?

  • 0

Are constructors inherited or do they belong to the class they are defined in? I only have seen examples with constructors of subclasses which call superclass’ constructors. This is my current code, which can give some hint about what’s going on. (I will change the code according to your replies. If I can use the constructor of the superclass, I won’t define a constructor for each subclass and call superclass’ constructor from each.

abstract class view
{
 public $vieverid;

 function __construct($viewerid) {
  $this->viewer = $viewerid;
 }
}
class viewactor extends view{

 function __construct($viewerid) {
  $this->viewerid = $viewerid;
 }
  • 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-26T22:52:27+00:00Added an answer on May 26, 2026 at 10:52 pm

    parent::__construct(params); use for calling superclass constructor

    PHP4

    PHP doesn’t call constructors of the base class automatically from a
    constructor of a derived class. It is your responsibility to propagate
    the call to constructors upstream where appropriate.

    PHP5

    PHP doesn’t call constructors of the base class if new constructor defined.
    If you define a constructor for derived class
    It is your responsibility to propagate
    the call to constructors upstream where appropriate.
    parent::__construct(params)

    Constructors

    abstract class view
    {
     public $vieverid;
    
     function __construct($viewerid) {
      $this->vieverid= $viewerid;
     }
    }
    
    class viewactor extends view{
    
     function __construct($viewerid) {
       parent::__construct($viewerid);
       // Extra code if you want
     }
    }
    
    class viewactor_construct extends view{
        // Works in PHP5
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I may be going about this backwards... I have a class which is like
I have a common base class from which all my ASMX webservice classes will
I have a abstract super class called RealAlgebraicNumber and two inherited classes called IntervalRepresentation
I have a class A which B inherits from. The inheritance includes a bunch
I have a class that has private fields... (cars) I then inherit from this
In one class, I have to call a constructor of another class that needs
So I have a base class that has many children. This base class defines
I was wondering why in java constructors are not inherited? You know when you
In the inherited class I use the base constructor, but I can't use the
I want to have a constructor with an argument that gets inherited by all

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.