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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T18:51:27+00:00 2026-05-23T18:51:27+00:00

In C++ what is the idiomatic way to define operator= on a class that

  • 0

In C++ what is the idiomatic way to define operator= on a class that should be immutable. For example all its member variables are const.

typedef unsigned char byte;

class Binary
{
protected:
    const unsigned long size;
    const byte* bytes;

public:
    Binary(const unsigned long size);
    Binary(const Binary &b);
    ~Binary(void);

    Binary& operator=(const Binary &b);
};

where bytes is a pointer to a block of memory malloced at run time.

Do I define an empty assignment operator or let it use the automatically generated on which will obviously fail?

I am trying to implement and enforce single assignment semantics on a few select classes.

  • 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-23T18:51:29+00:00Added an answer on May 23, 2026 at 6:51 pm

    Assuming that you are not going to reassign your members (using const_cast etc.), I would suggest to explicitly mention in your code that you are not using operator =.

    In Current C++ standard, make it private and unimplemented:

    class Binary
    {
      //...
    private:
      Binary& operator = (const Binary&);
    };
    

    In upcoming C++0x standard, delete it:

    class Binary
    {
      //...
      Binary& operator = (const Binary&) = delete;
    };
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there a idiomatic way of removing elements from PATH-like shell variables? That is
What's the most idiomatic way to write a class definition? There's no way that
Is there an idiomatic way to get available namespaces that can be used? (all-ns)
Is there an idiomatic way to bind variables in a MATLAB function? It seems
I want an idiomatic way to find the first element in a list that
It seems that the idiomatic way to provide flags to JRuby in an RVM-based
What's an idiomatic way of treating a bytestring nibblewise and pretty printing its hexadecimal
What is the Ruby idiomatic way for retrieving a single character from a string
What is the most idiomatic way to do the following? def xstr(s): if s
What would be the most idiomatic way to do the following in JavaScript: If

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.