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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T20:51:39+00:00 2026-06-06T20:51:39+00:00

I am trying to overload the operator= in a template class. I have this

  • 0

I am trying to overload the operator= in a template class.

I have this template class:

template <class T>
class Matrice
{
    T m,n;
public:
    template <class V>
    friend Matrice<V>& operator=(const Matrice<V> &);
};

template <class T>
Matrice<T>& Matrice<T>::operator=(const Matrice<T> &M)
{
    /*...*/
    return *this;
}

and I also tried:

template <class T>
class Matrice
{
    T m,n;
public:
    template <class V>
    Matrice<V>& operator=(Matrice<V> &);
};

template <class T>
Matrice<T>& operator=(Matrice<T> &M)
{
    /*...*/
    return *this;
}

but I still get this error:

error C2801: 'operator =' must be a non-static member
  • 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-06T20:51:41+00:00Added an answer on June 6, 2026 at 8:51 pm

    error C2801: ‘operator =’ must be a non-static member

    The bolded word is key here. friend is not a member; it’s a friend. Remove that friend keyword and treat operator= as member:

    The syntactically proper version is:

    template <class T>
    class Matrice
    {
        T m,n;
    public:
        template <class V>
        Matrice<V>& operator=(const Matrice<V> &);
    };
    
    template <class T>
    template <class V>
    Matrice<V>& Matrice<T>::operator=(const Matrice<V> &M)
    {
        /*...*/
        return *this;
    }
    

    Although I think that it’s wrong to use that template <class V> there; the sematically proper version would be

    template <class T>
    class Matrice
    {
        T m,n;
    public:
        Matrice<T>& operator=(const Matrice<T> &);
    };
    
    template <class T>
    Matrice<T>& Matrice<T>::operator=(const Matrice<T> &M)
    {
        /*...*/
        return *this;
    }
    

    Explanation: you don’t generally want to assign Type<V> to Type<T> in this way; if you have to, then it is probably sign of bad design.

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

Sidebar

Related Questions

I'm trying to overload the '--' postfix operator. I have this code: class Counter
I'm trying to overload the operator << as a friend to a template class
I'm trying to overload operator<< in the standard way. I have a class called
I mean, I was trying to overload the operator<< inside the class like this
I'm trying to do it this way: template <typename T> ostream &operator<<(ostream &os, T
Im trying to overload the operator<< const ostream & operator<<(const ostream& out, const animal&
I am trying to overload the subscript operator ([]) on an abstract class, the
Hey, I'm trying to figure out if it's possible to overload a template class
I am trying to overload the += operator for my rational number class, but
I am trying to overload the << operator in my class STEntry but keep

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.