Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: Brianw79
  • Content: Threads
  • Order by date
  1. Brianw79

    Question About Delete Operator

    My question is about a block of code I saw in particular C++ book. The following is the code: string& string::operator = (const string& Str) { char* temp = new char[Str.m_Length]; m_Length = Str.m_Length; memcpy(temp,Str.m_Data,m_Length); delete [ ] m_Data; m_Data = temp...

Part and Inventory Search

Back
Top