c++ 객체 생성을 기존객체 뒤쪽에 붙여서 하고싶습니다.. (컨테

jenix의 이미지

안녕하세요..

class *a = new class[n];
a++;
class *a = new class[3];

이런식으로 기존에 할당해 놓은 객체 배열 뒤에다가 다시 붙여서 또 더 객체를 늘리고 싶은데요..
컨테이너 쓰는 방법 외엔 없는 것일까요..
위의 방법은.. 기존 n 개 할당한 객체 메모리 뒤쪽에 뭐가 있는지 알 수 없으니 불가능 할 듯 보이구요.
아 -_- ... 컨테이너에 객체 넣으려다가 지금 그냥 포기하고.. ( ... 시간부족+무식 )
그냥 자작 링크드리스트라도 써야하는걸까요.. OTL

doldori의 이미지

push_back이나 resize로 안되나요?

Fe.head의 이미지

예제..)

#include <list>
#include <iostream>
using namespace std;

int
main()
{
 list<int *> lstInt;
 list<int *>::iterator i;
 int * pI;

 lstInt.push_back(new int(10));
 lstInt.push_back(new int(20));

 for(i = lstInt.begin(); i != lstInt.end() ; ++i)
 {
      pI = *i;
      cout << *pI << endl;
      delete *pI; 
 }
 return 0;
}

고작 블로킹 하나, 고작 25점 중에 1점, 고작 부활동
"만약 그 순간이 온다면 그때가 네가 배구에 빠지는 순간이야"

jenix의 이미지

음..인트형이 아니라;;

객체를 다뤄야해서요 ...

아..

연산자 오버로딩때문에..

헤더파일이 인라인 함수를 넣었는데요.

이게 에러를 못잡겠습니다. ㅠㅠ

	bool &operator==( cPoint &right ) const
	{
		return (this->getIdx() == right.getIdx());
	}

c:\documents and settings\jenix\my documents\강의자료\pp2004\hw02\pslib\demo1\cpoint.h(25): error C2662: 'cPoint::getIdx' : 'this' 포인터를 'const cPoint'에서 'cPoint &'(으)로 변환할 수 없습니다.

getIdx() 는 int cPoint::getIdx() {} 인 int 를 리턴하는 함수입니다만.. ㅠㅠ

---------------------------------------------------------------------------
http://jinhyung.org -- 방문해 보세요!! Jenix 의 블로그입니다! :D

doldori의 이미지

int cPoint::getIdx() const; 로 해야 하겠군요.
이왕이면 bool operator==(const cPoint &right ) const; 요렇게도요.

operator==() const이므로 이 함수 내부에서 this로 호출하는 함수 역시
const여야 합니다.

ps. vector에 넣는 개체는 복사와 대입만 정의되면 int든 클래스든 아무 상관이
없는데요?

myueho의 이미지

	bool &operator==( cPoint &right ) const
	{
		return (this->getIdx() == right.getIdx());
	}


bool 의 참조형을 리턴하는 것이 불안해 보입니다.
특별한 이유가 없다면 bool을 리턴하는 것이 좋을 것 같습니다.

댓글 달기

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