How can I overload a bitwise AND (&) in C ++ that concatenates the left operand (const char []) with the correct operand string object) (Homework)

EDIT: The following code is a working version located inside the header

inline char * operator & (const char String1 [], const MyStringClass & String2)
{
    int length = strlen (String1) + String2.Length();
    char * pTemp = new char [length + 1];
    strcpy (pTemp, String1);
    strcat (pTemp, String2.GetStr());   
    return pTemp;
}

      

For the first time I felt the need to ask a question as I could not find any useful information on my own (via search, google, book, etc.). My study book is C ++ Primer 5th Edition and I was reading Ch. 14, which covers operator overloading. I'm not necessarily looking for an "answer", but rather a nudge in the right direction (because I want to study this stuff).

In the assignment, we create our own custom string class and overload a bunch of operators that will take the class object from both sides - an exception to the assignment operator that only the class object on the left can take. I have played with all return types (this cannot be a member function, attempts to make this friend function failed).

/* 
   Note: return by value, otherwise I get a warning of returning the address
   of a local variable, temporary. But no matter the return type or what I'm
   returning, I always get the error: C2677: binary '&' : no global operator 
   found which takes type 'MyStringClass' (or there is no acceptable 
   conversion)
*/

MyStringClass operator & (const char String1 [], const MyStringClass & String2)
{
    /*
       The only requirement is that the left side has const char [] so that
       (const char []) & (MyStringClass &) will concatenate. There is no return 
       type requirement; so, I could either try and return a string object or
       an anonymous C-type string.

       cout << StringOject1 << endl; // this works
       cout << (StringObject1 & "bacon") << endl; // so does this; 
       // another function overloads & such that: obj & const char [] works

       cout << ("bacon" & StringObject1) << endl; // but not this
    */

    MyStringClass S (String1); // initialize a new object with String1
    S.Concat (String2); // public member function Concat() concatenates String2
                        // onto String1 in S
    return S; // this does not work

    /* a different way of trying this... */
    int Characters = strlen (String1) + String2.Length();
    int Slots = Characters;
    char * pTemp = new char [Slots + 1];
    strcpy (pTemp, String1);
    strcat (pTemp, String2.pString); // this won't work; pString is a private 
                                     // member holding char * and inaccessible
    // making it pointless to try and initialize and return an object with pTemp
}

      

+3


source to share


1 answer


After looking at your code and from what I can understand, you are probably looking for something like this:



class MyStringClass
{
public:
    const char* data() const;

private:
const char* charptr;
};


const char* MyStringClass::data() const
{
    return charptr;
}


MyStringClass operator & (const char String1 [], const MyStringClass & String2)
{
    /* a different way of trying this... */
    int len = strlen(String1) + String2.Length();
    char * pTemp = new char [len + 1]; //total length of both strings
    strcpy (pTemp, String1);
    strcat (pTemp, String2.data()); // you need to have a public member function that returns the string as const char*
    MyStringClass str(pTemp); //requires MyStringClass to have constructor that takes char*
    return str; //return the string

}

      

0


source







All Articles