1 / 8

11 장 String 클래스 디자인

11 장 String 클래스 디자인. Sung-Min Jung Internet Management Technology Lab. School of Information & Communication Engineering, Sungkyunkwan Univ. 300 Cheoncheon-dong, Jangan-gu, Suwon-si, Gyeonggi-do, Korea. Tel : +82-31-290-7222, Fax : +82-31-299-6673 smjung@imtl.skku.ac.kr.

Download Presentation

11 장 String 클래스 디자인

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. 11장 String 클래스 디자인 Sung-Min Jung InternetManagement Technology Lab. School of Information & Communication Engineering, Sungkyunkwan Univ. 300 Cheoncheon-dong, Jangan-gu, Suwon-si, Gyeonggi-do, Korea. Tel : +82-31-290-7222, Fax : +82-31-299-6673 smjung@imtl.skku.ac.kr

  2. 11-1. C++ 표준 라이브러리 • Data Structure & Algorithms • STL에 대한 소개 • Algorithms vs. STL

  3. 11-2 표준 string 클래스 #include <iostream> #include <string> using std::endl; using std::cout; using std::cin; using std::string; int main() { string str1="Good "; string str2="morning"; string str3=str1+str2; cout<<str1<<endl; cout<<str2<<endl; cout<<str3<<endl; str1+=str2; if(str1==str3) //str1과 str3의 내용 비교 cout<<"equal!"<<endl; string str4; cout<<"문자열 입력: "; cin>>str4; cout<<"입력한 문자열: "<<str4<<endl; return 0; }

  4. 11-3 사용자 정의 string 클래스 using std::ostream; using std::istream; class string{ int len; char* str; public: string(const char* s=NULL); string(const string& s); ~string(); string& operator=(const string& s); string& operator+=(const string& s); bool operator==(const string& s); string operator+(const string& s); friend ostream& operator<<(ostream& os, const string& s); friend istream& operator>>(istream& is, string& s); };

  5. 11-3 사용자 정의 string 클래스 string::string(const char* s){ len=(s!=NULL ? strlen(s)+1 : 1); str=new char[len]; if(s!=NULL) strcpy(str, s); } string::string(const string& s){ len=s.len; str=new char[len]; strcpy(str, s.str); }  string::~string(){ delete []str; }

  6. 11-3 사용자 정의 string 클래스 string& string::operator=(const string& s){ delete []str; // 메모리의 유출을 막기 위해  len=s.len; str=new char[len]; strcpy(str, s.str);  return *this; // 연속적인 대입 연산을 허용하기 위해 } string string::operator+(const string& s){ char* tStr=new char[len+s.len-1]; strcpy(tStr, str); // 문자열 복사 strcat(tStr, s.str); // 문자열 추가 string temp(tStr); delete []tStr; return temp; }

  7. 11-3 사용자 정의 string 클래스 ostream& operator<<(ostream& os, const string& s){ os<<s.str; return os; } string& string::operator+=(const string& s){ len=len+s.len-1; char* tStr=new char[len]; strcpy(tStr, str); // 문자열 복사 delete []str; strcat(tStr, s.str); //문자열 추가 str=tStr; return *this; }

  8. 11-3 사용자 정의 string 클래스 bool string::operator==(const string& s){ return strcmp(str, s.str)? false:true; } istream& operator>>(istream& is, string& s){ char str[100]; is>>str; s=string(str); return is; }

More Related