Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Class PointXY The class PointXY will be used below in questions in this exam. class PointXY { public: PointXY() { x = 0; y =

Class PointXY

The class PointXY will be used below in questions in this exam.

class PointXY {

public:

PointXY() { x = 0; y = 0; }

void set(double a, double b) { x = a; y = b; }

double getx() const { return x; }

double gety() const { return y; }

private:

double x, y;

};

This question uses the class PointXY.

Declare a class Polygon as follows.

The data in class Polygon is an integer num and a pointer PointXY *pxy, both private.

class Polygon {

public: Polygon(int n); // write code

// copy constructor // write code

// assignment operator // write code

// destructor // write code

(return type) get_point(int n) const; // write code

void set_point(const PointXY &p, int n); // write code

int get_num() const { return num; } // nothing to do, code is given to you

private:

int num;

PointXY *pxy;

};

Write a non-default constructor with an input int n.

1. If n > 0, set num=n and dynamically allocate pxy to an array of length num.

2. Else if n ? 0, set num = 0 and pxy = NULL.

Write a copy constructor, assignment operator and destructor to perform appropriate copies and management of dynamic memory.

Write a method get point(int n).

1. Return the address of pxy[n] if the value of n is valid.

2. Else return NULL.

3. The method is const.

4. Write the function value to have the correct type.

Write a method set point(const PointXY &p, int n).

1. Set pxy[n] = p if the value of n is valid.

2. Else do nothing.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions

Question

5 Outline the steps in the consumer decision process.

Answered: 1 week ago

Question

What are Measures in OLAP Cubes?

Answered: 1 week ago

Question

How do OLAP Databases provide for Drilling Down into data?

Answered: 1 week ago

Question

How are OLAP Cubes different from Production Relational Databases?

Answered: 1 week ago