string 클래스 디자인
본 자료는 3페이지 의 미리보기를 제공합니다. 이미지를 클릭하여 주세요.
닫기
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
해당 자료는 3페이지 까지만 미리보기를 제공합니다.
3페이지 이후부터 다운로드 후 확인할 수 있습니다.

소개글

string 클래스 디자인에 대한 보고서 자료입니다.

목차

11-1. C++ 표준 라이브러리

11-2 표준 string 클래스

11-3 사용자 정의 string 클래스

11-4 OOP 프로젝트 9 단계

본문내용

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);
};
  • 가격1,000
  • 페이지수9페이지
  • 등록일2008.12.30
  • 저작시기2008.12
  • 파일형식파워포인트(ppt)
  • 자료번호#511137
본 자료는 최근 2주간 다운받은 회원이 없습니다.
청소해
다운로드 장바구니