[완료]생성자를 정의해서 사용하는데 계속 오류가 납니다.

rjaechang의 이미지

메인함수에서 Polynomial이라는 클래스를 사용하려고 선언했는데 계속해서
\polynomial\polynomial.cpp(5) : error C2512: 'Polynomial' : no appropriate default constructor available
라는 컴파일 오류가 납니다.

아무래도 생성자에 선언되어있는 파라메터를 전달하지 않아서 그런 듯 한데 제가 가지고 있는 강의자료에는 저런식으로 선언을 하면 파라메터값을 전달받지 않아도 지정된 값으로 초기화를 시킨다고 되어있어서 이렇게 질문을 올립니다. 어떤 곳에서 보니 파라메터값이 없는 생성자를 따로 하나 더 선언하면 오류가 나지 않을거라고 하는데 그렇게 되면 값을 초기화 시키지 못하는게 아닌가 하는 생각이 듭니다.

메인함수입니다.

#include "Polynomi.h"

void main()
{
Polynomial Polyno;

Polyno.Input();

}

클래스(헤더파일)의 입니다.

class Polynomial{
public :

Polynomial(int maxpoly, int termCount);
//~Polynomial();
friend ostream& operator << (ostream& op, const Polynomial &s);
int Input();

private :
int Maxpoly;
//term* TermArray;
int TermCount;
};

구현부입니다.

Polynomial::Polynomial(int maxpoly = 20, /*termArray = new term[20],*/ int termCount = 1)
: Maxpoly(maxpoly), /*TermArray(termArray),*/ TermCount(termCount)
{}

또 추가로 질문드리자면... TermArray에 동적배열을 하나 할당해서 넣고싶은데 배열의 크기는 maxpoly입니다. 이걸 생성자에서 초기화 시켜줄수 있는지, 또 하나의 array가 만들어 지면 모든 객체에서 그 값 하나만 가지고 사용하는데 그럼 static으로 선언해줘야하나요? 아니면 어차피 주소값이니 그냥 사용해도 되는건가요. 아.. C++배우는 과정이라 너무 힘드네요...

chadr의 이미지

기본값을 구현부가 아니라 선언부에 명시 해보세요.

객체를 만든 소스에서는 헤더만 포함하기 때문에 기본값에 대한 지정이 없으므로
당연히 기본값으로 지정한 생성자를 못찾기 때문입니다.
-------------------------------------------------------------------------------
It's better to appear stupid and ask question than to be silent and remain stupid.

-------------------------------------------------------------------------------
It's better to appear stupid and ask question than to be silent and remain stupid.

rjaechang의 이미지

도움이 많이 됬어요. 감사합니다^^

(~`0`)~

댓글 달기

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