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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T21:50:08+00:00 2026-05-22T21:50:08+00:00

I’m new to OO programming, and I’m trying to understand how to assign values

  • 0

I’m new to OO programming, and I’m trying to understand how to assign values to common properties from subclasses in a proper manner. I always end up doing it in different ways every time, so I thought it would be a good idea to ask you how you normally do.

Let’s say that I have a parent class, Fruit ,and two subclasses Apple and Banana.

abstract class Fruit {

    protected $color; //empty property

    protected function getColor(){
        return $this->color;
    }
}

class Apple extends Fruit {
    protected $color = 'red';
}

class Banana extends Fruit {
    protected $color = 'yellow';
}

?>

Each subclass MUST have the property color, which will be used by, let’s say, the function getColor in the superclass.

But how do I deal with the property?

  1. I define the empty variable $color in the parent. Then I set the variable $color in the subclasses, and pass them to the parent by parent::__construct, to assign the value to the property in the parent.

  2. I define the empty variable $color in the parent. Then I simply use $this->color in the subclass to set the value.

  3. I define the property in each subclass, and leave it like that. The inherited methods can still use it.

I’d like to think that it’s best to collect the common properties in the parent class, but it just feels like overkill to write that many lines to set a few values (and if I have lots of properties, there will be lots of function parameters as well). Number two and three works, but it is hard to see that I actually need to define the property at all.

How should I think here? I’m so confused by all the OO way of thinking that I barely write any code at all, haha.

Thank you.

  • 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-22T21:50:09+00:00Added an answer on May 22, 2026 at 9:50 pm

    There is no “silver bullet”. In general, all the fields that are expected to be different in subclasses should be set through the parameters of the constructor to ensure that they are explicitly set. Other fields can be initialized by assigning values to the properties.

    For example, the color of a fruit can be set by assigning value to the property (because many fruits can be red), but the name should be set by constructor’s parameter (because the name uniquely identifies the fruit).

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

Sidebar

Related Questions

public static bool CheckLogin(string Username, string Password, bool AutoLogin) { bool LoginSuccessful; // Trim
I need to clean up various Word 'smart' characters in user input, including but
We are using XSLT to translate a RIXML file to XML. Our RIXML contains
i want to parse a xhtml file and display in UITableView. what is the

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.