String type class : String « Data Type « C++
- C++
- Data Type
- String
String type class
![String type class](http://www.java2s.com/Code/CppImages/Stringtypeclass.PNG)
#include <iostream>
#include <cstring>
#include <cstdlib>
using namespace std;
class StringClass {
char *p;
int len;
public:
StringClass(char *ptr)
{
len = strlen(ptr);
p = (char *) malloc(len+1);
if(!p) {
cout << "Allocation error\n";
exit(1);
}
strcpy(p, ptr);
}
~StringClass() {
cout << "Freeing p\n"; free(p);
}
void show()
{
cout << p << " - length: " << len;
cout << endl;
}
};
int main()
{
StringClass stringObject1("www.java2s.com"), stringObject2("www.java2s.com");
stringObject1.show();
stringObject2.show();
return 0;
}
Related examples in the same category
1. | A filter to remove white-space characters at the ends of lines. | | ![A filter to remove white-space characters at the ends of lines.](http://www.java2s.com/Code/CppImages/Afiltertoremovewhitespacecharactersattheendsoflines.PNG) |
2. | A string demonstration: assignment, concatenate, compare | | ![A string demonstration: assignment, concatenate, compare](http://www.java2s.com/Code/CppImages/Astringdemonstrationassignmentconcatenatecompare.PNG) |
3. | Demonstrate insert(), erase(), and replace(). | | ![Demonstrate insert(), erase(), and replace().](http://www.java2s.com/Code/CppImages/Demonstrateinserteraseandreplace.PNG) |
4. | Use string: find, string::npos | | ![Use string: find, string::npos](http://www.java2s.com/Code/CppImages/Usestringfindstringnpos.PNG) |
5. | Strings: size, iterator, count, begin and end | | ![Strings: size, iterator, count, begin and end](http://www.java2s.com/Code/CppImages/Stringssizeiteratorcountbeginandend.PNG) |
6. | string: find( ) and rfind( ) | | ![string: find( ) and rfind( )](http://www.java2s.com/Code/CppImages/stringfindandrfind.PNG) |
7. | Print a name in two different formats | | ![Print a name in two different formats](http://www.java2s.com/Code/CppImages/Printanameintwodifferentformats.PNG) |
8. | Several string operations: substr | | ![Several string operations: substr](http://www.java2s.com/Code/CppImages/Severalstringoperationssubstr.PNG) |
9. | String Char Indexing | | ![String Char Indexing](http://www.java2s.com/Code/CppImages/StringCharIndexing.PNG) |
10. | String Find and replace | | ![String Find and replace](http://www.java2s.com/Code/CppImages/StringFindandreplace.PNG) |
11. | String Size | | ![String Size](http://www.java2s.com/Code/CppImages/StringSize.PNG) |
12. | String SizeOf | | ![String SizeOf](http://www.java2s.com/Code/CppImages/StringSizeOf.PNG) |
13. | A short string demonstration | | ![A short string demonstration](http://www.java2s.com/Code/CppImages/Ashortstringdemonstration.PNG) |
14. | String insert(), erase(), and replace() | | ![String insert(), erase(), and replace()](http://www.java2s.com/Code/CppImages/Stringinserteraseandreplace.PNG) |
15. | string variable instead of a character array | | ![string variable instead of a character array](http://www.java2s.com/Code/CppImages/stringvariableinsteadofacharacterarray.PNG) |
16. | Inputting Multiple Words into a String | | ![Inputting Multiple Words into a String](http://www.java2s.com/Code/CppImages/InputtingMultipleWordsintoaString.PNG) |
17. | Adding Strings | | ![Adding Strings](http://www.java2s.com/Code/CppImages/AddingStrings.PNG) |
18. | Read string from console | | ![Read string from console](http://www.java2s.com/Code/CppImages/Readstringfromconsole.PNG) |
19. | Insert, search, and replace in strings. | | ![Insert, search, and replace in strings.](http://www.java2s.com/Code/CppImages/Insertsearchandreplaceinstrings.PNG) |
20. | Accessing Characters In Strings | | ![Accessing Characters In Strings](http://www.java2s.com/Code/CppImages/AccessingCharactersInStrings.PNG) |