typedef와 전방 선언에 관한 질문입니다.

vudghkzm의 이미지

c/c++ 에서...

A.h 파일에 아래와 같은 typedef 구문이 있습니다.

...
 
typedef struct {
    int i;
} a;
 
...

B.h 파일에 아래와 같은 코드가 있습니다.

class B {
public:
    B(a* param);
};

위와 같은 경우... B.h에 #include "A.h" 써주는게 원칙인가요?

클래스에 대한 포인터를 사용하는 경우에는 전방선언만으로 충분한데요... 위와 같이 typedef로 선언된 경우에는 어떻게 하는게 좋을까요?

winner의 이미지

우선 원래 type 에 이름을 부여한 후 전방선언후에 그걸 typedef 해야 할 것 같네요.

다음과 같이요.

struct a_;
typedef struct a_ a;

이런 식이라면 원하는 전방선언만 할 수 있겠지요.
아~, 위의 code 는 C 군요. typedef struct a_ a; 를 typedef a_ a; 로 해야겠네요.

익명 type 은 전방선언이 아무리 생각해도 불가능할 것 같은데요... ^_^

익명 사용자의 이미지

전방선언이라... 요새는 그렇게 부르나요?
저희때는 불완전한 선언으로 배웠는데.

C++에서는 저상황에서 typedef를 할 필요가 있나 싶군요.
struct나 class나 기본맴버가 public인가 아닌가만 제외하면 그게 그거인데.

typedef struct { int i; } a;
struct a { int i; };

C++에서 두 줄은 같은 내용입니다.

하지만 C에서는 다릅니다.

typedef struct { int i; } a;
struct a { int i; };
int main(void) { return 0; }

위의 코드를 a.c와 a.cc로 각자 따로 파일을 만든 뒤에 다음과 같이 컴파일 해 보십시오.

$ gcc a.c --std=c99 -Wall
$ g++ a.cc --std=c++98 -Wall

C는 가능해도 C++은 안됩니다.
struct의 태그이름은 C에서는 타입이름과 다른 namespace를 사용하지만 C++에서는 공유합니다.
oop를 지원하는 C++과 그렇지 않은 C의 미묘한 차이중 하나입니다.

C에서는 위에분이 말씀하신 대로 하면 되고,
C++에서는 그냥 struct a; 하시면 됩니다.
class a; 해도 상관없고요.

winner의 이미지

Forward declaration 이라고 하죠.
아마 C 에서는 불완전이라고 말하는게 맞을 겁니다.

그런데 이걸 학교에서 가르쳐주나요? 배웠다고 말씀하셨는데...

댓글 달기

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