반응형
#include <iostream>
#include <string>
using namespace std;
class STRING{
char *string;
int length;
public:
STRING(char*);
~STRING();
void Catenate(STRING &);
void Print();
};
STRING::~STRING(){
cout << "메모리 해제 중..\n";
delete string;
}
void STRING::Catenate(STRING &Str){
length = length + Str.length;
char *tmp = new char[length + 1];
strcpy
}
int main(){
STRING first("Timr is not money."); //STRING 객체로 first와 second 생성 first 객체에는 time is not money 저장
//second 객체에는 time is life 저장
STRING second("Time is life.");
first.Print();
second.Print();
first.Catenate(second);
cout << "\n.....문자열 연결.....\n";
first.Print();
return 0;
}
반응형
'C++' 카테고리의 다른 글
c++ 실수는 더하고 정수는 곱하기 (0) | 2023.01.10 |
---|---|
c++ 실수는 더하고 정수는 곱하고 문자는 아스키코드 값으로 더하기 (0) | 2023.01.10 |
c++ 선형탐색 (0) | 2023.01.10 |
c++ 선형,이분탐색 (0) | 2023.01.10 |
c++ 선택정렬 (0) | 2023.01.10 |