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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T23:28:48+00:00 2026-05-24T23:28:48+00:00

Having an issue with this particular method and not sure how to resolve it!

  • 0

Having an issue with this particular method and not sure how to resolve it! The error I’m getting is the above:

“error C2248: ‘std::basic_ios<_Elem,_Traits>::basic_ios’ : cannot
access private member declared in class
‘std::basic_ios<_Elem,_Traits>’ C:\Program Files\Microsoft Visual
Studio 10.0\VC\include\ostream 604”

My method is:

ostream operator<<( ostream & stream, ProcessClass const & rhs )
{
  stream << rhs.name_;
  return stream;
}

And in the header:

friend std::ostream operator<<( std::ostream & stream, ProcessClass const & rhs );

Any ideas on how to resolve this? I think it is something to do with passing by reference instead of value… but I’m a bit confused!

  • 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-24T23:28:48+00:00Added an answer on May 24, 2026 at 11:28 pm

    The return type should be ostream & which is a reference to ostream.

    ostream & operator<<( ostream & stream, ProcessClass const & rhs )
    {    //^^^ note this!
      stream << rhs.name_;
      return stream;
    }
    

    When you return by value (instead of reference), then that requires copying of stream object, but copying of any stream object in C++ has been disabled by having made the copy-constructor1 private.

    1. and copy-assignment as well.

    To know why copying of any stream has been disabled, read my detail answer here:

    • Why copying stringstream is not allowed?
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm having an issue getting this CSS for a sprite sheet to work on
I am getting into C# and I am having this issue: namespace MyDataLayer {
I am having an issue implementing Sifr3 on this particular site and it's driving
I am having some speed issue with my datatables. In this particular case I
I am having a dilemma in the logic of this particular issue. Forgive me
I am having this issue where Arabic letters are shown disjoint in any component
i'm having this issue, in ASP.NET MVC 2 where I'm adding a drop down
I have been having this issue in iterating through an array of keys and
I am having a similar issue to this person . The primary difference being
I'm having an issue bending my head around this one. I have a table

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.