how to overload << and >> operator in c++

Answers were Sorted based on User's Feedback



how to overload << and >> operator in c++..

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

how to overload << and >> operator in c++..

Answer / abed

in c++ << and >> overloaded as the insertion and out put
symbole

Is This Answer Correct ?    2 Yes 1 No

how to overload << and >> operator in c++..

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

Post New Answer

More STL Interview Questions

What are the symptoms of stl?

0 Answers  


Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.

0 Answers  


c# support late binding or early binding.

6 Answers  


What is C++ could you enplane me please?

1 Answers  


What is stl in c++ with example?

0 Answers  






i want a road rash 3d game code if some one know please help me

1 Answers  


Is stl open source?

0 Answers  


what is c++

2 Answers  


sir please send me bpcl previous question papers

0 Answers   BPCL Bharat Petroleum,


what is an algorithm in terms of STL?

1 Answers   Lucent, Wipro,


Can we use stl in coding interviews?

0 Answers  


how to overload << and >> operator in c++

3 Answers   Wipro,


Categories