c++ 추상클래스 공부하다 막혀서 질문드립니다.

goyang132의 이미지

#ifndef SAHPE_H
#define SAHPE_H
 
#include <iostream>
using namespace std;
 
class Shape{
	int index;
	Shape* next;
public:
	Shape();
	void paint();
	Shape* add(Shape* p, int index);
	Shape* getNext() {return next;}
	int getIndex();
	virtual void draw()=0;
	virtual ~Shape();
};
#endif

#include "Shape.h"
 
Shape::Shape(){
	index = 0;
	next = NULL;	
}
 
void Shape::paint(){
	draw();
}
 
Shape* Shape::add(Shape *p, int index){
	this->index = index;
	this->next = p;	
	return p;
}
 
int Shape::getIndex(){
	return this->index;
}
 
Shape::~Shape(){
	if(next)
		delete next;
}

분명 생성자도 잘 통과하는데 왜 this->index와 this->next에서 막히는지 모르겠습니다.
자꾸 저기서 예외처리 되었다고하는데 this->index하고 this->next를 못찾는것같은데...
디버그를 해보면 기호를 찾을수없다고하는데 무슨 이유로 못찾는건지...생성자에서는 찾는데
왜 add만 도착하면 못찾는건지 모르겠네요

File attachments: 
첨부파일 크기
Package icon GraphicEditor.zip4.93 MB
mirheekl의 이미지

void GraphicEditor::add(){
	int shapeAdd;
 
	shapeAdd = UI::getItem();
	switch(shapeAdd){	
	case 1: this->pLast = this->pLast->add(new Line(), this->index);
		break;
	case 2: this->pLast = this->pLast->add(new Circle(), this->index);
		break;
	case 3: this->pLast = this->pLast->add(new Rect(), this->index);
		break;
	}
 
	this->index++;
}

pLast 값을 사용하셨는데, 첫번째 this->pLast->add를 호출하는 상황에서 pLast가 NULL입니다. 그러면 결국 add 메서드 안에선 this가 NULL이 될수밖에 없고 당연히 add안에서 액세스 바이얼레이션이 발생하는 것이죠.

GraphicEditor::GraphicEditor(){
	this->pStart=NULL;
	this->pLast = pStart;
	this->index=0;
}

생성자를 보니 pLast는 NULL로 초기화되어 있습니다. 결국 이 상황을 피할 방법이 없는 셈이죠. 처음부터 pLast를 가지고 있을 수가 없으니..

--

댓글 달기

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