how to overload << and >> operator in c++
Answers were Sorted based on User's Feedback
Answer / manav sharma
class chocoBox {
private:
int pieCount;
float boxPrice;
public:
// By giving default arguments, const acts like
// 0, 1 and 2 argument contructor
myClass(int pCount = 10, float bPrice = 20.0)
: pieCount(pCount), boxPrice(bPrice)
{ }
int getPieCount() { return pieCount; }
float getBoxPrice() { return boxPrice; }
void setPieCount(int pc) { pieCount = pc; }
void setBoxPrice(float bp) {boxPrice = bp; }
};
/* Lets overload the operator << of ostream class. We will
return a reference of ostream class for cascading calls
e.g. cout<<obj1<<obj2
*/
ostream& operator<< (ostream &stream, const myClass &obj)
{
stream<<obj.GetPieCount<<" "<<obj.GetBoxPrice<<endl;
return (stream);
}
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / abed
in c++ << and >> overloaded as the insertion and out put
symbole
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / ramya
"<<" this inserssion perrator is used for output the
messages&values
">>"this exsersition operator is used for input the values
sentax:
return_type operator op(arguments_list)
{
----
----
}
| Is This Answer Correct ? | 1 Yes | 0 No |
what is template and type convertion
What is Object Oriental Progam
Why should a c++ programmer be interested in stl?
Explain how to insert a hyperlink in to an Excel worksheet and save a Word document as a Web page.
Explain stl.
What is the stl, standard template library?
write a program that input four digit no and finds it is palindrome or not
Describe the My Computer and My Documents folders; identify the elements that are present in every Window.
differentiate between private, public and protected data members of the class using example.
if x<>=z then statement end what is the cyclomatic complexity
What Is Operator Overloading in C++?
What is stl in oop?