C++ 실습과제

BakJeonghyun·2022년 10월 30일
0

전공C++

목록 보기
17/20

원을 추상화한 Circle 클래스는 간단히 아래와 같다.

class Circle {
    	int radius;
    public:
    	Circle(int radius=0) {this->radius=radius;}
        void show() {cout << "radius = " << radius << " 인 원" << endl;};
    }

다음 연산이 가능하도록 연산자를 프렌드 함수로 작성하라.

Circle a(5), b(4);
++a;
b = a++;
a.show();
b.show();

radius = 7 인 원
radius = 6 인 원

  1. 객체를 연산하는 전위 연산자를 정의한다

  2. 객체를 연산하는 후위 연산자를 정의한다

profile
I just got started a blog.

0개의 댓글