Questions that are most likely to be interviewed:

Source: Internet
Author: User
Requirements:
Write a string class, construct, copy, assign values, deconstruct, and so on.

Class string

{

Public:

String (const char * STR = NULL); // common Constructor

String (const string & other); // copy the constructor

~ String (void); // destructor

String & operate = (const string & other); // value assignment function

PRIVATE:

Char * m_data; // used to save strings

};

// String Constructor

String: string (const char * Str)

{

If (STR = NULL)

{

M_data = new char [1];

* M_data = '\ 0 ';

}
 
Else

{

Int length = strlen (STR );

M_data = new char [Length + 1];

Strcpy (m_data, STR );

}

}

// String destructor

String ::~ String (void)

{

Delete [] m_data;

// Because m_data is an internal data type, it can also be written as delete m_data;

}
// Copy the constructor

String: string (const string & other)

{

// Allow the operation of the private member m_data of other

Int length = strlen (other. m_data );

M_data = new char [Length + 1];

Strcpy (m_data, other. m_data );

}

// Value assignment function

String & string: operate = (const string & other)

{

// (1) Check the auto-assigned Value

If (this = & other)

Return * this;

// (2) release the original memory resource

Delete [] m_data;

// (3) allocate new memory resources and copy the content

Int length = strlen (other. m_data );

M_data = new char [Length + 1];

Strcpy (m_data, other. m_data );

// (4) return the reference of this object

Return * This; // remember at valid tive C ++, always return refrence of this.

}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.