template와 관련해서..

gugudan의 이미지

template에서
return값을
어떠한 클래스 값을 리턴할려고 할때
클래스 안에서
T get(int num)
{
Node *t;
int idx;
T return_t;
머 이런식으로 작성을 했는데..
이 함수가 끝날때쯤
소멸자가 호출이 되더군요..
이 소멸자가 호출되지 않게 할 수 없나요?

그리고 위의 get 메서드에서
return NULL을 했더니..
에러가 나오는군요..
NULL을 리턴하고 싶은데
어떻게 되지 않는지요?

voider의 이미지

포인터를 사용하셔야 될것 같네요
T* get(int num);

또는
auto_ptr<T> get(int num)
을 사용하셔도 될것 같네요.

-- 아쉬운 하루 되세요 --

cdpark의 이미지

T type 변수 return_t 가 만들어졌으니 어디선가는 사라져야 하지 않겠습니까?

함수에서 생성자/소멸자의 호출을 줄이기 위해서라면 return value optimization 기법(RVO)을 사용해보세요. 자세한 건 google에게 물어보세요.

그리고 몇 군데 지적.

1. 보통 xxx_t 는 관례적으로 typename을 위해 사용됩니다. (예: int16_t) 변수명으로 return_t 를 쓴다면 나중에 유지보수할 때에 혼란을 줄 가능성이 있습니다.

2. T 형에 NULL(정수 0이겠죠?)에 대한 생성자가 없다면 문제가 되겠죠? 최소한 return T(NULL); 이라고 casting해서 주는 게 안전하겠죠?

그리고 값없음을 돌려주고 싶다면 차라리 bool get(int num, T &return_val); 식으로 하는게 어떨까요? get이 실패하면 false를, 성공하면 true를 돌려주게 하고요.

doldori의 이미지

함수의 목적이 뭔지 모르겠지만 코드 조각만 보면 템플릿에는 별로 적합하지 않은
것 같습니다. 다형적인 클래스 계층의 개체를 만드는 함수라면 factory pattern을
적용하는 것이 좋겠습니다.

gugudan의 이미지

표준 list를 쓰닌까 정상적으로 동작하는데
내가 만든 list를 쓰닌까..문제가 생기네요..

일단 표준 list로 돌려놨습니다.
아직 C++이 넘 부족한게 느껴지네요..

답변 달아주신 분들 감사합니다..

댓글 달기

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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.