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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T00:38:38+00:00 2026-05-30T00:38:38+00:00

I am currently working on creating an overloaded function for the == operator. I

  • 0

I am currently working on creating an overloaded function for the == operator. I am creating an hpp file for my linked list and I can’t seem to get this operator working in the hpp file.

I currently have this:

template <typename T_>
class sq_list 
{

bool operator == ( sq_list & lhs, sq_list & rhs) 
{
    return *lhs == *rhs;
};

reference operator * ()     {
        return _c;
    };

};
}

I get about 10 errors but they pretty much repeat as errors:

C2804: binary ‘operator ==’ has too many parameters
C2333:’sq_list::operator ==’ : error in function declaration; skipping function body
C2143: syntax error : missing ‘;’ before ‘*’
C4430: missing type specifier – int assumed. Note: C++ does not support default-int

I’ve tried changing things around but I constanly get the same errors as above

Any tips or assistance on this is greatly appreciated.

  • 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-30T00:38:39+00:00Added an answer on May 30, 2026 at 12:38 am

    The member operator only has one argument, which is the other object. The first object is the instance itself:

    template <typename T_>
    class sq_list 
    {
        bool operator == (sq_list & rhs) const // don't forget "const"!!
        {
            return *this == *rhs;  // doesn't actually work!
        }
    };
    

    This definition doesn’t actually make sense, since it just calls itself recursively. Instead, it should be calling some member operation, like return this->impl == rhs.impl;.

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

Sidebar

Related Questions

I`m currently working on a script, and I have the following situation. function somnicefunction()
I'm currently working on creating a private messaging system, (PHP/MySQL) in which users can
I am currently working on creating a vertical scroller and have got so far
I am currently working on creating a header file that acts like the standard
I'm currently working on creating a new C# project that needs to interact with
I'm currently working on an iPhone app and I have a library from a
I'm currently working on creating a custom connection provider for HNibernate very similar to
I'm creating a game, and am currently working on the Inventory system for it.
I'm currently working on a cross-platform mobile app and have gone through the process
I am currently working on converting an application from access to C# and have

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.