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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T12:00:10+00:00 2026-06-01T12:00:10+00:00

For checking equality in a simple array, i’ve the following; int a[4] = {9,10,11,20};

  • 0

For checking equality in a simple array, i’ve the following;

int a[4] = {9,10,11,20};
    if(a[3]== 20){
        cout <<"yes"<< endl;
    }

However, when I create an array of type class, and try and check equality I get error;

Human is a class with private variables for name, age, gender etc, and
get and set functions for these variables.

humanArray has size 20

void Animal::allocate(Human h){
    for (int i =0; i<20; i++){
        if(humanArray[i] == h){
            for(int j = i; j<size; j++){
                humanArray[j] = humanArray[j +1];
            }
        }
    }
}

I get following error;

error: no match for 'operator==' in '((Animal*)this)->Animal::humanArray[i] == h'|

I could pass in the index and Human, and check against index number. However, is there a way to check if two elements are same? I don’t wish to check say ‘Human name’ against human name, since for some parts my human will not have a name.

  • 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-06-01T12:00:13+00:00Added an answer on June 1, 2026 at 12:00 pm

    In order to make the syntax

    if(humanArray[i] == h)
    

    legal, you will need to define operator== for your human class. To do this, you might write a function that looks like this:

    bool operator== (const Human& lhs, const Human& rhs) {
       /* ... */
    }
    

    Inside this function, you would do a field-by-field comparison of lhs and rhs to see if they were equal. From this point forward, any time that you try to compare any two humans by using the == operator, C++ will automatically call this function for you to make the comparison.

    Hope this helps!

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

Sidebar

Related Questions

Is there a uniform method to perform equality with type checking? Unfortunately val objectA:String
What is the most efficient way for checking for equality of two m *
I seem to be having a problem with checking for list equality. In my
While learning .net (by c#) i found 5 ways for checking equality between objects.
I understand that the semantics of equality checking changes based on whether you are
From wikipedia: // A class template to express an equality comparison interface. template<typename T>
Checking the HTML source of a question I see for instance: <a id=comments-link-xxxxx class=comments-link>add
When checking checkbox_01 div1 toggles. HTML <div> <ul> <li><input type=checkbox id=checkbox_01 /></li> <div id=div1
I have seen both of these when checking the equality of two Java String
I often need to check if expr1==expr2 , where checking for symbolic equality is

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.