c struct 에서 static ???

BarracuTa의 이미지

코가 너무막혀서 고생하는 사람입니다. ㅜㅜ

#include

struct test{
static int a;
};
int test::a=5;
int main(){

return 0;
}

위 소스를 c++ 에서는 가능한데

c 에서는 불가능하더군요

static 변수를 struct 안 넣지 못하는 이유가 무언가요?

정녕 넣을 수있는 방법은 없나요?

klenui의 이미지

C++에서는 struct나 class나 같은 것으로 알고있습니다. default가 private이냐 public이냐는 거 빼면 말이지요.. 그래서 static으로 선언하면 객체마다 존재하는 게 아니라 type에 연동하는 값이 되는데,
C에서는 instantiation이라는 개념자체가 없이 자료 참조 방식을 결정하기 위해서만 자료형을 쓰니까 static이란 개념이 존재할 수 없는 거 아닌가라는 생각이 듭니다.

개념은 그렇게 알고 있습니다만, 정확한지는 모르겠습니다.. 어차피 compiler의 구현 문법 문제가 아닌가라는 생각도 드네요...

cppig1995의 이미지

당연한 것입니다.
C에는 ::연산자 자체가 없습니다.
C의 struct는 단순한 레코드를 표현하기 위한 것입니다.
어쨌든 이런 것은, OO(객체지향)를 지원하는 C++과 (절대 OOPL이라고만 할순없음)
언어적으로 PP(Procedural Programming)만을 지원하는 C의 차이점이라고 할수있죠.

Real programmers /* don't */ comment their code.
If it was hard to write, it should be /* hard to */ read.

liebeym의 이미지

구조체 맴버는 기억부류 지정자를 가질수 없습니다. 단 형한정자는 올수 있습니다.

구조체를 선언하면 그때 구조체라는 data type이 선언이 됩니다. 각 멤버는 구조체 data type에 속하는 개념이고요
그래서 구조체 data type이 선언될때 각 맴버를 바로 초기화도 시킬수 없죠.

struct st_foo{
int test = 3; /* wrong */
int test2;
} foo;

그래서 foo가 갖는 기억부류 지정자 선언과 상관없이 따로 구조체 맴버가 기억부류 지정자 선언을 가질수 없습니다.

그래서 static struct test { ..} test ; 로 선언 하셔서 사용하시면 됩니다.

AMule--->A si bal Mule

BarracuTa의 이미지

답변주신분들 감사합니다.

음 근데 예전 계시판에서는 인용할 수있었는데 바뀐 게시판은 인용이 불가능한가보군요....

언제나 막혀버린 코구멍은 뚫릴것인가......ㅜㅜ
저희 업소를 방문해 주셔서 감사합니다.

저희 업소를 방문해 주셔서 감사합니다.

댓글 달기

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