copy constructor : string « string « C++ Tutorial






#include <iostream>
using std::cout;
using std::endl;

#include <string>
using std::string;

int main()
{
   string s1( "AA1234567890asdfasdf" );
   string s2( " AAB" );
   string s3;

   // test copy constructor
   string *s4Ptr = new string( s1 );  
   cout << "\n*s4Ptr = " << *s4Ptr << "\n\n";

   return 0;
}
*s4Ptr = AA1234567890asdfasdf








15.1.string
15.1.1.Define a string variable, assign a value and display it
15.1.2.string basics
15.1.3.copy constructor
15.1.4.Create a string object using another string object
15.1.5.Create a string from a vector
15.1.6.Loop through the string array
15.1.7.Using a dynamically allocated ostringstream object.
15.1.8.Input from an istringstream object.