Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,906 questions

51,838 answers

573 users

How to use friend operator in C++

1 Answer

0 votes
#include <iostream>

using std::cout;
using std::endl;
using std::ostream;

class Test {
	char name[50];
	int age;
public:
	Test(char *_name, int _age)
	{
		strcpy(name, _name);
		age = _age;
	}
	friend ostream &operator<<(ostream &stream, Test o);
};
ostream &operator<<(ostream &stream, Test o)
{
	stream << o.name << " " << o.age << endl;

	return stream; 
}
int main()
{
	Test o1("Anakin Skywalker", 63);
	Test o2("Obi-Wan Kenobi", 90);

	cout << o1 << o2;

	return 0;
}


/*
run:

Anakin Skywalker 63
Obi-Wan Kenobi 90

*/

 



answered Mar 24, 2018 by avibootz

Related questions

1 answer 144 views
1 answer 204 views
1 answer 203 views
1 answer 189 views
189 views asked Mar 28, 2019 by avibootz
1 answer 141 views
141 views asked Sep 18, 2018 by avibootz
...