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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T01:29:39+00:00 2026-06-18T01:29:39+00:00

I was thinking about implementing a ternary put operator in cpp similar to <<:

  • 0

I was thinking about implementing a ternary put operator in cpp similar to “<<“:

mystream <<< param2 param3;

Is this possible? Does it already exist? One remark: I remember having seen this:

out <<STDERR param

Wouldnt this already be a ternary 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-18T01:29:40+00:00Added an answer on June 18, 2026 at 1:29 am

    To send C++ output to the stderr stream, use cerr << var1 << var2 or clog << 1 << 2.

    There is exactly one ternary operator in C++, ?:, and it cannot be overloaded.

    <<< is a binary operator in all languages where I’ve seen it. C++ does not have it; such a character sequence would be parsed as << < which is nonsense as neither can be used as a unary operator.

    Finally, the second and third “operands” there are separated only by whitespace. C++ has no grammar productions including expression expression; that would lead to serious ambiguities.


    The chaining behavior as in cerr << var1 << var2 is achieved by overloads of the form

    std::ostream & operator << ( std::ostream &, my_class const & );
    

    The ostream & return type allows the result of the first call cerr << var1 to be used as the left-hand operand to << var2.

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

Sidebar

Related Questions

I was thinking about implementing a logic similar to observer pattern on my website,
Im thinking about implementing this multistep wizard discussed in ryan bates railscast. http://railscasts.com/episodes/346-wizard-forms-with-wicked Im
I'm implementing a tag system similar to StackOverflow tag system. I was thinking about
I think I know C++ reasonably well and I am thinking about implementing something
I'm thinking about a good solution for implementing a sign up/login system that works
Been thinking about this for hours now. Im building a simple slideshow application, where
Was thinking about implementing tearaway tabs on a Java project I'm working on. Wondering
I am currently thinking about implementing an application with NHibernate and I would like
I am thinking about implementing a user interface according to the MVP pattern using
I am thinking about implementing a program with finite state automaton in an OOP

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.