정적 멤버 변수 설정시 에러 발생
글쓴이: 익명 사용자 / 작성시간: 금, 2001/10/19 - 12:14오후
본예제는 클래스로 만든 스택이 몇개인지를 조사하는건데요..
초보라 에러를 잘 못고치겠습니다.
아시는 분의 도움을 구합니다.
#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
메시지의 의미는 알겠는데..
책에서는 이렇게 정적멤버변수에 접근한다고 나와있는데
책이 잘못된 것일까요?
Forums:
Re: 정적 멤버 변수 설정시 에러 발생
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.)
제생각엔 정적변수는 모 특별하게 다루는 방법이 있는것인지..
오리무중이네요.
Re^2: 정적 멤버 변수 설정시 에러 발생
임동현 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++ 책을 한번 더 뒤적여봐야겠네요.
Re^3: 답변 감사합니다. 그러나 아직도 잘 안되네요..
아..
함수 앞에 static 안붙히셨네요.
붙히고 해보세요..
Re^3: 답변 감사합니다. 그러나 아직도 잘 안되네요..
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.)
제생각엔 정적변수는 모 특별하게 다루는 방법이 있는것인지..
오리무중이네요.
Re^4: 답변 감사합니다. 그러나 아직도 잘 안되네요..
맞춤법 틀렸네요.-_-
이해해주길..부탁.
public static int getcount(); 이런식으로 작성해 주셔야 겠죠?...
Re^3: 정적 멤버 변수 설정시 에러 발생
static 변수의 초기화를 하지 않아서 나타나는 문제였네요. --;;;
main() 함수전에
int stackstack_count = 0;
으로 초기화를 해주니 되는군요.
댓글 달기