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 86 views
86 views asked Dec 19, 2024 by avibootz
1 answer 144 views
144 views asked May 4, 2018 by avibootz
1 answer 269 views
1 answer 185 views
185 views asked Apr 4, 2024 by avibootz
...