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 IamaSherpa 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: *

  1. chappy83

    Problem with class and object.

    Hello, Now I understand the message, but didn't I declare the function as an member function? Because in the class String a have: Public: void set_String(const String &); So isn't that a member function ? Thx,
  2. chappy83

    Problem with class and object.

    Hy, I have a litle problem with the folowing code: String::String(const String & ori){ tekst = NULL; set_String(ori); }; void set_String(const String & ori){ //opppassen voor self reference if ( this != ori ) { set_String( ori.get_String() ); } else { cout << "ERROR: self...

Part and Inventory Search

Back
Top