정적 멤버 변수 설정시 에러 발생

익명 사용자의 이미지

본예제는 클래스로 만든 스택이 몇개인지를 조사하는건데요..

초보라 에러를 잘 못고치겠습니다.

아시는 분의 도움을 구합니다.

#include

class stack {
private
static int stack_count; // 현재사용중인 스택의 개수
int count; // 스택에 있는 항목의 개수
int data[100];

public
stack();
~stack();
};

stackstack()
{
count=0;
stack_count++;
}
stack~stack()
{
stack_count--;
}

int main()
{
stack a_stack;
stack b_stack;
cout << stackstack_count << endl; // 컴파일하면 여기서 에러발생
return 0;
}

에러메시지
ex259.cpp In function `int main ()'
ex259.cpp5 `int stackstack_count' is private
ex259.cpp28 within this context

메시지의 의미는 알겠는데..

책에서는 이렇게 정적멤버변수에 접근한다고 나와있는데
책이 잘못된 것일까요?

익명 사용자의 이미지

private
static int stack_count;

정적 멤버 변수가 private 으로 선언되어 있기때문에..

class 내의 멤버함수에서만 접근이 가능합니다.

그래서

public
static int stack_count;

이렇게 잡아주시거나...

public
int GetStackCount()
{
return stack_count;
}

이렇게 선언해서

GetStackCount() 를 호출해서 사용하세요..

익명 사용자의 이미지

소스입니다.

#include

class stack {
private
static int stack_count;
int count;
int data[100];
public
stack();
~stack();
int get_stack();
};

stackstack()
{
count=0;
stack_count++;
}
stack~stack()
{
stack_count--;
}

int get_stack()
{
return stack_count;
}

int main()
{
stack a_stack;
stack b_stack;
cout << a_stack.get_stack() << endl;
return 0;
}

------------------
에러메시지 입니다.
test.cpp In function `int get_stack ()'
test.cpp26 `stack_count' undeclared (first use this function)
test.cpp26 (Each undeclared identifier is reported only once for each
function it appears in.)

제생각엔 정적변수는 모 특별하게 다루는 방법이 있는것인지..
오리무중이네요.

익명 사용자의 이미지

임동현 wrote..
private
static int stack_count;

정적 멤버 변수가 private 으로 선언되어 있기때문에..

class 내의 멤버함수에서만 접근이 가능합니다.

그래서

public
static int stack_count;

이렇게 잡아주시거나...

저도 이렇게 생각해서 작성해봤는데
생성자와 소멸자에서
undefined reference to `stackstack_count' 에러가 나는군요.
저도 C++ 을 잘 알지는 못해놔서 왜 그런지는... >_<;;

public
int GetStackCount()
{
return stack_count;
}

이렇게 선언해서

GetStackCount() 를 호출해서 사용하세요..

오브젝트를 생성하지 않았기 때문에 stackGetStackCount() 로 호출하지는
못합니다.

움.. C++ 책을 한번 더 뒤적여봐야겠네요.

익명 사용자의 이미지

아..

함수 앞에 static 안붙히셨네요.

붙히고 해보세요..

익명 사용자의 이미지

c++초보자 wrote..
소스입니다.

#include <iostream.h>

class stack {
private
static int stack_count;
int count;
int data[100];
public
stack();
~stack();
int get_stack();
};

stackstack()
{
count=0;
stack_count++;
}
stack~stack()
{
stack_count--;
}

int stackget_stack() 로 써야됩니다. 멤버함수니깐요..

int get_stack()
{
return stack_count;
}

int main()
{
stack a_stack;
stack b_stack;
cout << a_stack.get_stack() << endl;
return 0;
}


------------------
에러메시지 입니다.
test.cpp In function `int get_stack ()'
test.cpp26 `stack_count' undeclared (first use this function)
test.cpp26 (Each undeclared identifier is reported only once for each
function it appears in.)

제생각엔 정적변수는 모 특별하게 다루는 방법이 있는것인지..
오리무중이네요.

익명 사용자의 이미지

맞춤법 틀렸네요.-_-

이해해주길..부탁.

public static int getcount(); 이런식으로 작성해 주셔야 겠죠?...

익명 사용자의 이미지

static 변수의 초기화를 하지 않아서 나타나는 문제였네요. --;;;

main() 함수전에

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