본문 바로가기

PROGRAMMING LANGUAGE/C++

const 함수 이용

#include <iostream>
using namespace std;

class Complex
{
private:
	int real;
	int image;

public:
	void SetComplex() // const 불가능
	{
		real = 2;
		image = 5;
	}

	// 값을 변경하지 않고 출력만 하는 함수 const선언으로 
	// 값을 변경할 수 없게 선언한다.
	void ShowComplex() const
	{
		cout << "( " << real << " + " << image << "i )" << endl;
	}
};



void main()
{

}

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

Buyer Seller 함수 구현  (0) 2021.11.12
함수의 Default 매개변수  (0) 2021.11.11
inline 함수  (0) 2021.11.11
참조를 리턴받을 때 문제점  (0) 2021.11.10
strcpy , strcpy_s 차이점  (0) 2021.08.16