c++ 생성자...

sinwho의 이미지

만약에

#include
using namespace std;
#ifndef STRING2_H_
#define STRING2_H_
class String
{
private:
char * str; // 문자열을 지시하는 포인터
int len; // 문자열의 길이
static int num_strings; // 객체의 수
static enum {CINLIM = 80}; // 또는 static const int CINLIM = 80;
public:
// 생성자와 기타 메서드
String(const char * s); // 생성자
String(); // 디폴트 생성자
String(const String & st); // 복사 생성자
~String(); // 파괴자
int length() const { return len; }
// 오버로딩 연산자 메서드
String & operator=(const String & st);
String & operator=(const char * s);
char & operator[](int i);
const char & operator[](int i) const;
// 오버로딩 연산자 프렌드
friend bool operator<(const String & st1, const String & st2);
friend bool operator>(const String & st1, const String & st2);
friend bool operator==(const String & st1, const String & st2);
friend ostream & operator<<(ostream & os, const String & st);
friend istream & operator>>(istream & is, String & st);
friend String operator+(const String & st1, const String & st2);
void stringlow();
void stringup();
int has(char ch);
// static 함수
static int HowMany();
};
#endif

헤더 파일과

#include
using namespace std;
#include "string2.h"
int main()
{
String s1(" and I am a C++ student.");
String s2 = "영문 이름을 입력하십시오: ";
String s3;
cout << s2; // 오버로딩된 << 연산자
cin >> s3; // 오버로딩된 >> 연산자
s2 = "My name is " + s3; // 오버로딩된 =, + 연산자
cout << s2 << ".\n";
s2 = s2 + s1;
s2.stringup(); // 문자열을 대문자로 변환한다
cout << "다음 문자열에는\n" << s2 << "\n문자 'A'가 "
<< s2.has('A') << "개 들어 있습니다.\n";
s1 = "red"; // String(const char *)와,
// String & operator=(const String &)를 사용한다
String rgb[3] = { String(s1), String("green"), String("blue") };
cout << "빛의 삼원색의 이름을 하나만 입력하십시오: ";
String ans;
bool success = false;
while (cin >> ans)
{
ans.stringlow(); // 문자열을 소문자로 변환한다
for (int i = 0; i < 3; i++)
{
if (ans == rgb[i])
{
cout << "맞았습니다!\n";
success = true;
break;
}
}
if (success)
break;
else
cout << "다시 입력하십시오: ";
}
cout << "프로그램을 종료합니다.\n";
return 0;
}

이런 메인 파일이 있을경우

s2 = "My name is " + s3;

는 어떤 식으로 해석되나요??

String & operator=(const char * s);

String(const char * s);

가 실행되는거 같은데 이유를 잘 모르겠네요^^;

towstock의 이미지

"My name is " + s3 연산을 처리하기 위해서는 일단 "My name is "라는 문자열이 String 타입으로 변경되어야 합니다.
"My name is "라는 문자열을 String 타입으로 변경시키기 위해 String(const char * s) 생성자가 불리지요.

그런 다음 + 연산은 아시듯이 friend String operator+(const String & st1, const String & st2) 함수에 의해 실행됩니다.

마지막으로 연산 결과를 s2에 대입할 때는 String & operator=(const char * s) 함수가 호출됩니다.

"My name is " 문자열의 String 타입 변환은 프로그램 실행시 암묵적으로 일어나기 때문에 혼동스러울 수 있습니다.^^

sinwho의 이미지

아무리 검색하고 책을 다시 뒤져도 몰랐는데 감사합니다^^

근데 하나만 더 여쭤봐도 될까요??

함수안의 cout으로 어떤 메서드가 호출되는지 추적해봤는데요

String & operator=(const char * s); sinwho
String(const char * s); My name is
String(const char * s); My name is sinwho
friend String operator+(const String & st1, const String & st2);

sinwho 라는 문자열을 넣으면 제일 먼저

String & operator=(const char * s); sinwho

실행되고 말씀하신 대로 실행되더라고요 이 문장은 뭘 뜻하는 건가요??

참고로 옆의 문자들은 넘겨주는 매개변수를 출력하게 한거에요^^

항상 너무 감사합니다(--)(__)

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.