Database System Concepts
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
Bartleby Related Questions Icon

Related questions

bartleby

Concept explainers

Question

Implement the copy assignment operator= for the StringVar class using the options given on the right side window. Place the code into the left side using the arrows. It is possible to get the test case correct but not complete

NOTE: Be careful! There are decoys! The this pointer is used extensively..

Assume that StringVar.h has the following declaration:

#include <iostream>

class StringVar {
public:
StringVar() : max_length(20) { // Default constructor size is 20
value = new char[max_length+1];
value[0] = '\0';
}

StringVar(int size); // Takes an int for size

StringVar(const char cstr[]); // Takes a c-string and copies it

StringVar(const StringVar& strObj); // Copy Constructor

~StringVar(); // Destructor

int size() const { return max_length; } // Access capacity

const char* c_str() const { return value; } // Access value

int length() const { return strlen(value); } // Access length

StringVar& operator= (const StringVar& rightObj);

std::istream& operator>> (std::istream& in, StringVar& strVar);

std::ostream& operator<< (std::ostream& out, const StringVar& strVar);

private:
int max_length;
char* value;
};

I Exit Full Screen
RESPONSE AREA
ANSWER BANK
Organize answer blocks in the proper order:
Move the necessary blocks over into the response area:
i strcpy(rightobj.value, value);
delete this->value;
this->max_length = rightobj.length();
if (this !- &rightObj) {
: StringVar *this;
return *this;
: if (c_str() < rightObj.c_str)) {
: if (*this == rightobj) {
10
: StringVar& StringVar::operator = (const StringVar& rightobj)
# // Copy Assignment operator= for StringVar class.
11
12
# #include <cstring>
13
14
15
}
: #include "StringVar.h"
if (this->max_1length < rightobj.length()) {
: if (length() < rightobj.size()) {
this->value - new char[this->max_length+1];
strcpy(this->value, rightobj.c_str());
expand button
Transcribed Image Text:I Exit Full Screen RESPONSE AREA ANSWER BANK Organize answer blocks in the proper order: Move the necessary blocks over into the response area: i strcpy(rightobj.value, value); delete this->value; this->max_length = rightobj.length(); if (this !- &rightObj) { : StringVar *this; return *this; : if (c_str() < rightObj.c_str)) { : if (*this == rightobj) { 10 : StringVar& StringVar::operator = (const StringVar& rightobj) # // Copy Assignment operator= for StringVar class. 11 12 # #include <cstring> 13 14 15 } : #include "StringVar.h" if (this->max_1length < rightobj.length()) { : if (length() < rightobj.size()) { this->value - new char[this->max_length+1]; strcpy(this->value, rightobj.c_str());
Expert Solution
Check Mark
Knowledge Booster
Background pattern image
Computer Science
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
Recommended textbooks for you
Text book image
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Text book image
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Text book image
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
Text book image
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Text book image
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Text book image
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education