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

  • Home
  • SEARCH
  • 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 9251543
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T10:43:40+00:00 2026-06-18T10:43:40+00:00

Possible Duplicate: std::endl is of unknown type when overloading operator<< #include <iostream> using namespace

  • 0

Possible Duplicate:
std::endl is of unknown type when overloading operator<<

#include <iostream>

using namespace std;

struct OutputStream
{
    template<class T>
    OutputStream& operator <<(const T& obj)
    {
        cout << obj;

        return *this;
    }
};

OutputStream os;

int main()
{    
    os << 3.14159 << endl; // Compilation Failure!
}

The VC++ 2012 compiler complains:

error C2676: binary ‘<<‘ : ‘OutputStream’ does not define this operator or a conversion to a type acceptable to the predefined operator

  • 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-18T10:43:41+00:00Added an answer on June 18, 2026 at 10:43 am

    The reason is that the compiler cannot deduce the type of T, because std::endl is a function template defined as

    template <class charT, class traits>
      basic_ostream<charT,traits>& endl ( basic_ostream<charT,traits>& os );
    

    The way it is overcome in IOStreams is by providing an appropriate overload of operator<<:

    OutputStream& operator <<(std::ostream& ( *pf )(std::ostream&))
    {
      cout << pf;
      return *this;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: Copy Constructor is not invoked # include <iostream> using namespace std; class
Possible Duplicate: Calling class method through NULL class pointer #include <iostream> using namespace std;
Possible Duplicate: Virtual Functions Object Slicing let's consider: #include <vector> #include <iostream> using namespace
Possible Duplicate: Why does this simple std::thread example not work? Code: #include <iostream> #include
Possible Duplicate: Print leading zeros with C++ output operator (printf equivalent)? #include <iostream> #include
Possible Duplicate: How is std::iostream buffered? This might sound ridiculous, but how can I
Possible Duplicate: C++: “std::endl” vs “\n” In Accelerated C++ , two things are mentioned:
Possible Duplicate: C++: “std::endl” vs “n” I'm wondering if there is any significant difference
Possible Duplicate: How to force std::stringstream operator >> to read an entire string? I
Possible Duplicate: Program not waiting for cin I wrote the following code: #include <iostream>

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.