I can not implement >> operator
ostream&operator>>(Mode&refMode,ostream&os)
to perform chaining operations as
refMode.iMode>>(refMode.jMode>>os)
Would you please provide me an implementation of it ?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
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.
As Oli said in his comment, we normally define
operator <<for streaming. You shouldn’t change the usual semantics of the operator just to be fancy. That said, I don’t see any other technical impediments for your idea. Example:But why would you want to do such a thing?