두 구조체의 데이터 멤버로 상대방 구조체 변수를 지정 할 수 있나요?

bowme의 이미지

struct brother {
    char name[20];
    int age;
    sister sib;
} a;
 
struct sister {
    char name[20];
    int age;
    brother sib;
} b;

그냥 이렇게 하니까 brother 구조체에서 sister라는 자료형이 없다고 에러가 뜨던데 두 구조체를 각각 상대방의 멤버로 만들려면 어떻게 해야 하나요?

dg의 이미지

struct sister;
struct brother {
char name[20];
int age;
sister sib;
} a;
 
struct sister {
char name[20];
int age;
brother sib;
} b;

하면...... 안됩니다... ㅡㅡ;;
brother가 sister를 포함하고 그 sister가 다시 brother를 포함하고..
이런식으로 구조체의 크기가 무한하게 되죠..
따라서
struct sister;
struct brother {
char name[20];
int age;
sister *sib;
} a;
 
struct sister {
char name[20];
int age;
brother *sib;
} b;

이런식으로 해서 new로 할당하면 됩니다..
bowme의 이미지

답변 감사합니다.
그런데 new로 할당하는건 어떤 차이가 있는지 알 수 있을까요?

bus710의 이미지


search : linked list

sorry, i can't type korean^^;;

life is only one time

익명사용자의 이미지

답은 위에 처럼 포인터를 쓰시면 됩니다.

근데 brother 구조체가 sister 를 가질 필요가 있나요?

sibiling 을 밖에서 표현하는게 자연스러워 보입니다.

댓글 달기

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 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.