227 TIF

227 TIF



const String& operator+=(const String& string)

{

Append(string.m_pch, string.m_cch); return *this;

}

const String& operator+=(const char *sz)

{

Append(sz, strlen(sz)); return *this;

}

int operator==(const String& string) const

{

return(strcmp(m_pch, string.m_pch) == 0); } ■

int operator==(const char *sz) const

{

return(strcmp(m_pch, sz) == 0);

}

int operator>(const String& string) const

{

return(strcmp(m_pch, string.m_pch) > 0);

}

int operator>(const char *sz) const

{

return(strcmp(m_pch, sz) > 0);

}

int operator<(const String& string) const

{

return(strcmp(m_pch, string.m_pch) < 0);

}

int operator<(const char *sz) const

{

return(strcmp(m_pch, sz) < 0);

}

// Wskazówka 53.

#ifdef CODE_GPF

String &operator+(const String&string) const

{


Wyszukiwarka

Podobne podstrony:
228 TIF String stringNew(m_pch); stringNew.Append(string.m_pch, string.m_cch); return
String toString( ) {return "Tytuł: "+tytul+" autor : "+autor+" rok wydania
int dajMcldunekO {return meldunek;} public static Kolor valueOfAlias( String s ) { try { return valu
093 TIF Tworzenie stałych operatorów 80 kompilowanie kodu Przed class Napis { char & operator[]
ne wskazówki int RExp::IChlnSz(unsigned char chSrc, const char *pch, int cch){ _asm{ xor eax, eax mo
226 TIF II Wskazówka 94. String(const String &string): m_cchTest(10){ lnitString(string.m_pch,
68 (203) uses Crt; const TajneHaslo - TajemniczeHaslo ; var PodaneHaslo : String; function PodajHas
Kod programu wygląda następująco: Option Explicit Const strNazwaMakra As String =„ Obliczanie

więcej podobnych podstron