This week you'll be making the following refinements to the class that you wrote in the last assignment. All the requirements from that class are still in force. For example, all MyStrings must always be stored in a dynamic array that is exactly the correct size to store the string. Your score on this assignment will take into consideration your work on both the previous assignment and this assignment. 1. Extraction Operator Just like the >> operator that reads C-strings, your >> operator should skip any leading spaces and then read characters into the string up to the first whitespace character. For reasons of convenience, we will impose a limit of 127 on the number of characters this function will read. This is so you can temporarily read into a non-dynamic array and then copy what you need into your data member, which will be a dynamic array. Note that this does not mean that all MyStrings will always have a maximum of 127 characters. For example, you might get a MyString with more than 127 characters by using the MyString constructor or by concatenating two MyStrings. You should create a constant for the maximum input size. Declare it in the public area of the class. It should be static. Hint: Don't try to read character by character in a loop. Use the extraction operator to read the input into a non-dynamic array, then use strcpy() to copy it into your data member. Make sure to allocate the correct amount of memory. Hint: if you use the extraction operator as suggested above, you will not have to skip leading whitespace, because the extraction operator does that for you. 2. A read() function The read() function will allow the client programmer to specify the delimiting character (the character at which reading will stop). It should work just like the getline() function works for c-strings; that is, it should place everything up to but not including the delimiting character into the calling object, and it should also consume (and discard) the delimiting character. This will be a void function that will take two arguments, a stream and the delimiting character. It should not skip leading spaces. The limit of 127 characters imposed on the >> function above also applies to this function. Hint: Don't try to read character by character in a loop. Use the in.getline() function to read the input into a non-dynamic array, then use strcpy() to copy it into your data member. 3. Concatenation Operator Overload the + operator to do MyString concatenation. The operator must be able to handle either MyString objects or C-strings on either side of the operator. Be careful with the memory management here. You'll have to allocate enough memory to hold the new MyString. I suggest using strcpy() to get the left operand into the result MyString, and then strcat() to append the right operand. Both strcpy() and strcat() should be used as if they are void, even though they do have return values. You may not have more than one operator+() function. 4. Combined Concatenation/Assignment Operator Overload the shorthand += to combine concatenation and assignment. Only MyStrings can be on the left-hand side of a += operation, but either MyStrings or C-strings may appear on the right side. If you pay close attention to the += operator from the feetInches class, these may be the easiest points of the semester. You may not have more than one operator+=() function. 5. Add Documentation Testing basic String creation & printing string [0] = Wow string [1] = C++ is neat! string [2] = string [3] = a-z Now reading MyStrings from file first, word by word Read string = The Read string = first Read string = time Read string = we Read string = will Read string = read Read string = individual Read string = words, Read string = next Read string = we Read string = read Read string = whole Read string = lines now, line by line Read string = The first time we will Read string = read individual words, next Read string = we read whole lines Testing access to characters (using const) Whole string is abcdefghijklmnopqsrtuvwxyz now char by char: abcdefghijklmnopqsrtuvwxyz Testing access to characters (using non-const) Start with abcdefghijklmnopqsrtuvwxyz and convert to ABCDEFGHIJKLMNOPQSRTUVWXYZ Testing relational operators between MyStrings Comparing app to apple Is left < right? true Is left <= right? true Is left right? false Is left >= right? false Does left == right? false Does left != right ? true Comparing apple to Is left right? false Is left <= right? false Is left right? true Is left > right? true Does left == right? false Does left != right ? true Comparing to Banana Is left < right? true Is left <= right? true Is left right? false Is left >= right? false Does left == right? false Does left != right ? true Comparing Banana to Banana Is left right? false Is left <= right? true Is left right? false Is left right? true Does left == right? true Does left != right ? false Testing relations between MyStrings and char * Comparing he to hello Is left right? true Is left <= right? true Is left right? false Is left >= right? false Does left == right? false Does left != right ? true Comparing why to wackity Is left right? false Is left <= right? false Is left right? true Is left >= right? true Does left == right? false Does left != right ? true Testing concatentation on MyStrings outrageous + milk = outrageousmilk milk + = milk cow = COW cowbell = cowbell Testing concatentation between MyString and char * abcde XYZ = abcdeXYZ XYZ abcde = XYZabcde ----- Testing shorthand concat/assign on MyStrings who what = whowhatandwhowhat what + WHEN = whatWHENandwhatWHEN

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

Provide the full C++ main.cpp, mystring.cpp and mystring.h. Part of the output is provided below

This week you'll be making the following refinements to the class that you wrote in the last assignment. All the requirements from that class are still in force. For example, all MyStrings must always be stored in a dynamic array that is exactly the correct size to store the string. Your score on this assignment will
take into consideration your work on both the previous assignment and this assignment.
1. Extraction Operator
Just like the >> operator that reads C-strings, your >> operator should skip any leading spaces and then read characters into the string up to the first whitespace character.
For reasons of convenience, we will impose a limit of 127 on the number of characters this function will read. This is so you can temporarily read into a non-dynamic array and then copy what you need into your data member, which will be a dynamic array. Note that this does not mean that all MyStrings will
always have a maximum of 127 characters. For example, you might get a MyString with more than 127 characters by using the MyString constructor or by concatenating two MyStrings.
You should create a constant for the maximum input size. Declare it in the public area of the class. It should be static.
Hint: Don't try to read character by character in a loop. Use the extraction operator to read the input into a non-dynamic array, then use strcpy() to copy it into your data member. Make sure to allocate the correct amount of memory.
Hint: if you use the extraction operator as suggested above, you will not have to skip leading whitespace, because the extraction operator does that for you.
2. A read() function
The read() function will allow the client programmer to specify the delimiting character (the character at which reading will stop). It should work just like the getline() function works for c-strings; that is, it should place everything up to but not including the delimiting character into the calling object, and it
should also consume (and discard) the delimiting character. This will be a void function that will take two arguments, a stream and the delimiting character. It should not skip leading spaces. The limit of 127 characters imposed on the >> function above also applies to this function.
Hint: Don't try to read character by character in a loop. Use the in.getline() function to read the input into a non-dynamic array, then use strcpy() to copy it into your data member.
3. Concatenation Operator
Overload the + operator to do MyString concatenation. The operator must be able to handle either MyString objects or C-strings on either side of the operator. Be careful with the memory management here. You'll have to allocate enough memory to hold the new MyString. I suggest using strcpy() to get the left
operand into the result MyString, and then strcat() to append the right operand. Both strcpy() and strcat() should be used as if they are void, even though they do have return values.
You may not have more than one operator+() function.
4. Combined Concatenation/Assignment Operator
Overload the shorthand += to combine concatenation and assignment. Only MyStrings can be on the left-hand side of a += operation, but either MyStrings or C-strings may appear on the right side. If you pay close attention to the += operator from the feetInches class, these may be the easiest points of the
semester.
You may not have more than one operator+=() function.
5. Add Documentation
Transcribed Image Text:This week you'll be making the following refinements to the class that you wrote in the last assignment. All the requirements from that class are still in force. For example, all MyStrings must always be stored in a dynamic array that is exactly the correct size to store the string. Your score on this assignment will take into consideration your work on both the previous assignment and this assignment. 1. Extraction Operator Just like the >> operator that reads C-strings, your >> operator should skip any leading spaces and then read characters into the string up to the first whitespace character. For reasons of convenience, we will impose a limit of 127 on the number of characters this function will read. This is so you can temporarily read into a non-dynamic array and then copy what you need into your data member, which will be a dynamic array. Note that this does not mean that all MyStrings will always have a maximum of 127 characters. For example, you might get a MyString with more than 127 characters by using the MyString constructor or by concatenating two MyStrings. You should create a constant for the maximum input size. Declare it in the public area of the class. It should be static. Hint: Don't try to read character by character in a loop. Use the extraction operator to read the input into a non-dynamic array, then use strcpy() to copy it into your data member. Make sure to allocate the correct amount of memory. Hint: if you use the extraction operator as suggested above, you will not have to skip leading whitespace, because the extraction operator does that for you. 2. A read() function The read() function will allow the client programmer to specify the delimiting character (the character at which reading will stop). It should work just like the getline() function works for c-strings; that is, it should place everything up to but not including the delimiting character into the calling object, and it should also consume (and discard) the delimiting character. This will be a void function that will take two arguments, a stream and the delimiting character. It should not skip leading spaces. The limit of 127 characters imposed on the >> function above also applies to this function. Hint: Don't try to read character by character in a loop. Use the in.getline() function to read the input into a non-dynamic array, then use strcpy() to copy it into your data member. 3. Concatenation Operator Overload the + operator to do MyString concatenation. The operator must be able to handle either MyString objects or C-strings on either side of the operator. Be careful with the memory management here. You'll have to allocate enough memory to hold the new MyString. I suggest using strcpy() to get the left operand into the result MyString, and then strcat() to append the right operand. Both strcpy() and strcat() should be used as if they are void, even though they do have return values. You may not have more than one operator+() function. 4. Combined Concatenation/Assignment Operator Overload the shorthand += to combine concatenation and assignment. Only MyStrings can be on the left-hand side of a += operation, but either MyStrings or C-strings may appear on the right side. If you pay close attention to the += operator from the feetInches class, these may be the easiest points of the semester. You may not have more than one operator+=() function. 5. Add Documentation
Testing basic String creation & printing
string [0] = Wow
string [1] = C++ is neat!
string [2] =
string [3] = a-z
Now reading MyStrings from file
first, word by word
Read string = The
Read string = first
Read string = time
Read string = we
Read string = will
Read string = read
Read string = individual
Read string = words,
Read string = next
Read string = we
Read string = read
Read string = whole
Read string = lines
now, line by line
Read string = The first time we will
Read string =
read individual words, next
Read string = we read whole lines
Testing access to characters (using const)
Whole string is abcdefghijklmnopqsrtuvwxyz
now char by char: abcdefghijklmnopqsrtuvwxyz
Testing access to characters (using non-const)
Start with abcdefghijklmnopqsrtuvwxyz and convert to ABCDEFGHIJKLMNOPQSRTUVWXYZ
Testing relational operators between MyStrings
Comparing app to apple
Is left < right? true
Is left <= right? true
Is left right? false
Is left >= right? false
Does left == right? false
Does left != right ? true
Comparing apple to
Is left right? false
Is left <= right? false
Is left right? true
Is left > right? true
Does left == right? false
Does left != right ? true
Comparing to Banana
Is left < right? true
Is left <= right? true
Is left right? false
Is left >= right? false
Does left == right? false
Does left != right ? true
Comparing Banana to Banana
Is left right? false
Is left <= right? true
Is left right? false
Is left right? true
Does left == right? true
Does left != right ? false
Testing relations between MyStrings and char *
Comparing he to hello
Is left right? true
Is left <= right? true
Is left right? false
Is left >= right? false
Does left == right? false
Does left != right ? true
Comparing why to wackity
Is left right? false
Is left <= right? false
Is left right? true
Is left >= right? true
Does left == right? false
Does left != right ? true
Testing concatentation on MyStrings
outrageous + milk = outrageousmilk
milk + = milk
cow = COW
cowbell = cowbell
Testing concatentation between MyString and char *
abcde XYZ = abcdeXYZ
XYZ abcde = XYZabcde
----- Testing shorthand concat/assign on MyStrings
who what = whowhatandwhowhat
what + WHEN = whatWHENandwhatWHEN
Transcribed Image Text:Testing basic String creation & printing string [0] = Wow string [1] = C++ is neat! string [2] = string [3] = a-z Now reading MyStrings from file first, word by word Read string = The Read string = first Read string = time Read string = we Read string = will Read string = read Read string = individual Read string = words, Read string = next Read string = we Read string = read Read string = whole Read string = lines now, line by line Read string = The first time we will Read string = read individual words, next Read string = we read whole lines Testing access to characters (using const) Whole string is abcdefghijklmnopqsrtuvwxyz now char by char: abcdefghijklmnopqsrtuvwxyz Testing access to characters (using non-const) Start with abcdefghijklmnopqsrtuvwxyz and convert to ABCDEFGHIJKLMNOPQSRTUVWXYZ Testing relational operators between MyStrings Comparing app to apple Is left < right? true Is left <= right? true Is left right? false Is left >= right? false Does left == right? false Does left != right ? true Comparing apple to Is left right? false Is left <= right? false Is left right? true Is left > right? true Does left == right? false Does left != right ? true Comparing to Banana Is left < right? true Is left <= right? true Is left right? false Is left >= right? false Does left == right? false Does left != right ? true Comparing Banana to Banana Is left right? false Is left <= right? true Is left right? false Is left right? true Does left == right? true Does left != right ? false Testing relations between MyStrings and char * Comparing he to hello Is left right? true Is left <= right? true Is left right? false Is left >= right? false Does left == right? false Does left != right ? true Comparing why to wackity Is left right? false Is left <= right? false Is left right? true Is left >= right? true Does left == right? false Does left != right ? true Testing concatentation on MyStrings outrageous + milk = outrageousmilk milk + = milk cow = COW cowbell = cowbell Testing concatentation between MyString and char * abcde XYZ = abcdeXYZ XYZ abcde = XYZabcde ----- Testing shorthand concat/assign on MyStrings who what = whowhatandwhowhat what + WHEN = whatWHENandwhatWHEN
Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education