Overloading operator<<() : Inserter Extractor « Overload « C++

Home
C++
1.Bitset
2.Class
3.Console
4.Data Structure
5.Data Type
6.Deque
7.Development
8.File
9.Function
10.Generic
11.Language
12.List
13.Map Multimap
14.Overload
15.Pointer
16.Qt
17.Queue Stack
18.Set Multiset
19.STL Algorithms Binary search
20.STL Algorithms Heap
21.STL Algorithms Helper
22.STL Algorithms Iterator
23.STL Algorithms Merge
24.STL Algorithms Min Max
25.STL Algorithms Modifying sequence operations
26.STL Algorithms Non modifying sequence operations
27.STL Algorithms Sorting
28.STL Basics
29.String
30.Valarray
31.Vector
C / ANSI-C
C Tutorial
C++ Tutorial
Visual C++ .NET
C++ » Overload » Inserter ExtractorScreenshots 
Overloading operator<<()
  
#include <iostream>
#include <string.h>
using namespace std;
class String
{
   public:
      String();
       String(const char *const);
       String(const String &);
      ~String();

      char & operator[](int offset);
      char operator[](int offsetconst;
      String operator+(const String&);
      void operator+=(const String&);
      String & operator= (const String &);
      friend ostream& operator<<ostream& theStream,String& theString);
      int GetLen()const return itsLen; }
      const char * GetString() const return itsString; }

   private:
      String (int);
      char * itsString;
      unsigned short itsLen;
};

String::String(){
   itsString = new char[1];
   itsString[0'\0';
   itsLen=0;
}

String::String(int len)
{
   itsString = new char[len+1];
   for (int i = 0; i<=len; i++)
      itsString[i'\0';
   itsLen=len;
}

String::String(const char const cString)
{
   itsLen = strlen(cString);
   itsString = new char[itsLen+1];
   for (int i = 0; i<itsLen; i++)
      itsString[i= cString[i];
   itsString[itsLen]='\0';
}

String::String (const String & rhs)
{
   itsLen=rhs.GetLen();
   itsString = new char[itsLen+1];
   for (int i = 0; i<itsLen;i++)
      itsString[i= rhs[i];
   itsString[itsLen'\0';
}

String::~String ()
{
   delete [] itsString;
   itsLen = 0;
}

String& String::operator=(const String & rhs)
{
   if (this == &rhs)
      return *this;
   delete [] itsString;
   itsLen=rhs.GetLen();
   itsString = new char[itsLen+1];
   for (int i = 0; i<itsLen;i++)
      itsString[i= rhs[i];
   itsString[itsLen'\0';
   return *this;
}

char & String::operator[](int offset){
   if (offset > itsLen)
      return itsString[itsLen-1];
   else
      return itsString[offset];
}

char String::operator[](int offsetconst
{
   if (offset > itsLen)
      return itsString[itsLen-1];
   else
      return itsString[offset];
}

String String::operator+(const String& rhs)
{
   int  totalLen = itsLen + rhs.GetLen();
   String temp(totalLen);
   int i, j;
   for (i = 0; i<itsLen; i++)
      temp[i= itsString[i];
   for (j = 0; j<rhs.GetLen(); j++, i++)
      temp[i= rhs[j];
   temp[totalLen]='\0';
   return temp;
}

void String::operator+=(const String& rhs)
{
   unsigned short rhsLen = rhs.GetLen();
   unsigned short totalLen = itsLen + rhsLen;
   String  temp(totalLen);
   int i, j;
   for (i = 0; i<itsLen; i++)
      temp[i= itsString[i];
   for (j = 0, i = 0; j<rhs.GetLen(); j++, i++)
      temp[i= rhs[i-itsLen];
   temp[totalLen]='\0';
   *this = temp;
}

ostream& operator<< ostream& theStream,String& theString)
{
     theStream << theString.itsString;
     return theStream;
}

int main()
{
    String theString("Hello world.");
    cout << theString;
  return 0;
}
  
    
  
Related examples in the same category
1.Overload ostream and istreamOverload ostream and istream
2.Overload the << operator
3.Override and input output stream operator
4.Demonstrate a custom inserter and extractor for objects of type ThreeD.
5.Non-member functions are used to create custom inserters for three_d objects and to overload + for int + three_d.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.