Constructors of the string class

Source: Internet
Author: User

Compile the constructor, destructor, and value assignment functions of the string class. The prototype of the known string class is:
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) //  6 points  {  If (STR = Null) {m_data = New   Char [ 1 ]; //  It is better if null can be added. * M_data = '\ 0  ';}  Else  {  Int Length = Strlen (STR); m_data = New   Char [Length +1 ]; //  It is better if null can be added.  Strcpy (m_data, STR );}}


// Copy constructor String: string ( Const String & other)
{ Int Length = Strlen (other. m_data); m_data = New Char [Length + 1 ];// It is better if null can be added. Strcpy (m_data, other. m_data );}


// Value assignment function String & string: operate = ( Const String & other)
{ // (1) Check auto-assigned values
If ( This == & Other) Return *This ; // (2) Release original memory resources
Delete [] m_data; // (3) allocate new memory resources and copy the content
Int Length = Strlen (other. m_data); m_data = New Char [Length + 1 ]; // It is better if null can be added. Strcpy (m_data, other. m_data ); // (4) return the reference of this object
Return * This ;}

//String destructor
String ::~ String (Void){
Delete [] m_data;
//Because m_data is an internal data type, you can also write it as delete m_data;
}

The C standard library contains the string Library: String. h contains strlen (), strcpy () functions, and so on.

C-style string library in C ++: # include <cstring>

Extended string library in C ++: # include <string>

 

 

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.