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

  • Home
  • SEARCH
  • 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 4612340
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T01:23:23+00:00 2026-05-22T01:23:23+00:00

Am I using the superclass correctly to access the title , minutes and price

  • 0

Am I using the superclass correctly to access the title, minutes and price?

 public class Video extends CollectionItem
    {

      public Video(String title, 
          int minutes, double price) {

    super(title,minutes,price);

      }

      public String getTitle() {
        return super(title);
      }

      public int getMinutes() {
        return super(minutes);
      }

      public double getPrice() {
        return super(price);
      }

      public double pricePerMinute() {
        return 
            super(price)/super(minutes);
      }

}

here is my superclass can you check to make sure i did everything correctly i am very new to this and i did research i just thought that super() was the correct way

Public class CollectionItem
{

  public String title;
    public int minutes;
    public double price;
    public int pages;


public Video(String title, 
      int minutes, double price) {

    this.title = title;
    this.minutes = minutes;
    this.price = price;
  }


public Book(String title, 
      int pages, double price) {

    this.title = title;
    this.pages = pages;
    this.price = price;
  }


public String getTitle() {
    return title;
  }

  public int getPages() {
    return pages;
  }

  public double getPrice() {
    return price;
  }

  public int getMinutes() {
    return minutes;
  }


}
  • 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-22T01:23:24+00:00Added an answer on May 22, 2026 at 1:23 am

    No, you’re not.

    It depends on how the super class is defined. If the price,minutes fields are defined as protected then you access them just by writing their name. So,

    public int getPrice() { 
      return price;
    }
    

    Even more likely, is that the super class defines a public getter method such as:

    public int getPrice() {
      return price;
    }
    

    If that is the case, then there’s no need to define a similar method in the subclass since the method from the super class is inherited by the subclass.

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

Sidebar

Related Questions

I have the following: public class MyClass : SuperClass { [JsonProperty] public virtual string
I have the following class defined as a bean: @Repository(userDao) public class UserDao extends
How to inject method (using reflection) into super class without extending tested class? I
Using delphi 2010, i am wondering if there someway to escape the following string
You can upcast or downcast an instance (to a superclass or subclass) using this
If I have a super class with a convenience constructor as follows (using ARC):
I'm trying to call a method of the superclass by using a variable method
I am using the getConstructors() method to pull the class's contructors. The class is
I have a class with a subclass. The superclass has a Position property. The
I have a class which i realized will not always correctly instantiate and as

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.