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 defined and use friend function in C++

1 Answer

0 votes
#include <iostream>

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

class Test {
	int n;
public:
	Test(int _n) { n = _n; }
	friend int pos(Test o); // friend function
};

// friend function is defined outside that class and can 
// access all private and protected members of the class
int pos(Test o)
{
	return (o.n > 0) ? 1 : 0;
}

int main()
{
	Test obj(13);

	if (pos(obj))
		cout << "yes" << endl;
	else
		cout << "no" << endl;


	return 0;
}



/*
run:

yes

*/

 



answered Mar 24, 2018 by avibootz

Related questions

1 answer 204 views
1 answer 203 views
1 answer 119 views
119 views asked Mar 24, 2018 by avibootz
3 answers 302 views
1 answer 212 views
1 answer 162 views
...