본문 바로가기

PROGRAMMING LANGUAGE/C++

inline 함수

 

#include <iostream>
using namespace std;

class Complex
{
private:
	int real;
	int image;
public:
	void SetComplex()
	{
		real = 2;
		image = 5;
	}

	void ShowComplex();
};

inline void Complex::ShowComplex()
{
	cout << "( " << real << " + " << image << "i )" << endl;
}

void main()
{

}

'PROGRAMMING LANGUAGE > C++' 카테고리의 다른 글

함수의 Default 매개변수  (0) 2021.11.11
const 함수 이용  (0) 2021.11.11
참조를 리턴받을 때 문제점  (0) 2021.11.10
strcpy , strcpy_s 차이점  (0) 2021.08.16
C++ 함수 템플릿 사용하기  (0) 2021.07.06