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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T19:36:46+00:00 2026-05-29T19:36:46+00:00

I want to access class InternalNode’s getSurplus() method. I have getSurplus() defined in a

  • 0

I want to access class InternalNode’s getSurplus() method.

I have getSurplus() defined in a “InternalNode.h” file.

“…” means other code.

How do I refer to the method getSurplus from the InternalNode class?

//InternalNode.h
{
class InternalNode:public BTreeNode

{
 ...

 void remove(int a);
 int getSurplus() const;
 ...
 }

}



int InternalNode::getSurplus() const
{
 return (count - (internalSize + 1) / 2);
}

//
BTreeNode* InternalNode::remove(int value)
{
...

if (children[i]->getSurplus() >= 0) return SURPLUS; //Not correct syntax

...
}
  • 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-29T19:36:48+00:00Added an answer on May 29, 2026 at 7:36 pm

    Since children is an array of BtreeNode* objects, and InternalNode is derived from BtreeNode, then provided that the pointer returned from children[i] is in-fact a pointer to a InternalNode object (and not some other derived object of BtreeNode), you have to explicitly cast the pointer back to a type InternalNode*. This could be done like so:

    if (static_cast<InternalNode*>(children[i])->getSurplus() >= 0)
    

    If you are not sure that each BtreeNode* is pointing to an InternalNode object (i.e., it could be pointing to some other derived type), then you’re going to have to use a dynamic_cast<InternalNode*>(children[i]), and check to make sure the operation returns a valid pointer, and not NULL.

    So if you’re absolutely sure about the types in your array, then you can use static_cast<>() in this situation (i.e., right now BtreeNode is the only base-class of InternalNode, it is not a virtual base class, etc.) … otherwise if you want to be safe at the cost of some run-time overhead, use dynamic_cast<>() and check for a NULL pointer return value from the cast operation.

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

Sidebar

Related Questions

My JAVA class code snippet .I want to access getReg_chal() method from my C
My JAVA class code snippet. I want to access getReg_chal() method from my C
I have this code for my Data Access class where I want to load
I have a method that I want to access from only one method because
i want to access a integer and a string from a class to all
Let's say I have the following class X where I want to return access
I want to define a class method that has access to a local variable.
I want to access a MySQL database directly from JavaScript code in an HTML
Let's say that I have a class defined in moduleA.py which I want to
I have a project having a static and non-static class. I want to access

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.