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,948 questions

51,890 answers

573 users

How to implement class methods as inline function in C++

1 Answer

0 votes
#include <iostream>

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

class Test {
	int a, b, c;
public:
	void set(int _a, int _b, int _c);
	void print();
};

inline void Test::set(int _a, int _b, int _c)
{
	a = _a;
	b = _b;
	c = _c;
}

inline void Test::print()
{
	cout << a << " " << b << " " << c << endl;
}

int main()
{
	Test o;
	
	o.set(13, 781, 9803);
	o.print();

	return 0;
}



/*
run:

13 781 9803

*/

 



answered Mar 6, 2018 by avibootz

Related questions

1 answer 64 views
64 views asked Dec 19, 2024 by avibootz
1 answer 117 views
117 views asked May 4, 2018 by avibootz
1 answer 225 views
1 answer 159 views
159 views asked Apr 4, 2024 by avibootz
...