typedef 형정의질문입니다.

dionysos의 이미지

#include<stdio.h>
typedef int* intP;
int main()
{
intP a,b;
printf("AA");
return 0;
}

이런 코드는 int*형 변수 a,b를 나타냅니다.

#include<stdio.h>
int main()
{
int* a,b;
printf("AA");
return 0;
}

이 코드는 똑같다고 생각함에도 불구하고 int*변수 a와 int형 변수 b를 생성합니다

똑같다고생각되지만 왜 나오는결과는 다른걸까요

typedef대한 괜찮은 문서 있으시면 추천바랍니다.

monpetit의 이미지

dionysos wrote:

typedef int* intP;
intP a,b;
int* a,b;

둘은 서로 다릅니다.

intP a, b <==> int *a; int *b;
int* a, b <==> int *a; int b;

이렇게 해석됩니다.

dionysos의 이미지

이와관련된 문서라도 혹시 아시는분 있으시면 부탁드리겠습니다.

노력은 배반하지 않는다.

cinsk의 이미지

선언(declaration)은 크게 두 부분으로 구분됩니다. "declaration specifier"와 "init declarator"로 구분됩니다.

declaration specifier는 보통 base가 되는 타입을 생각하면 됩니다. 예를 들어 int, char, float, double, long 등이죠, 여기에 또 typedef로 만든 이름도 포함됩니다.

init declarator는 배열 선언을 위한 [], 포인터 선언을 위한 *, 함수 선언을 위한 () 등을 포함한 변수/함수 이름까지입니다.

따라서 "typedef int * intp;"로 선언된 이름 "intp"는 declaration specifier에 속합니다. 따라서 init declarator로 단순히 이름만 주면 됩니다.

intp a, b;    /* a와 b 모두 int * 타입 */

그러나 정상적인 경우, 포인터를 나타내는 '*'는 init declarator에 속하기 때문에, (변수/함수 이름에 종속적이라고 할 수도 있겠습니다.) 이름을 선언할 때마다 매번 써 주어야 합니다.

int *a, *b;

즉 이 경우,

  • declaration specifier - int
  • init declarator list - "*a, *b"
    • declarator - "* a"
    • declarator - "* b"

입니다.

[/][/]
dionysos의 이미지

아직까지 제가 본 책에서는 이런 내용을 본적이 없는것 같군요..

감사합니다. 많이 배우고 갑니다..

혹시 이와 관련된 책이나 문서 혹시 있으시면 추천해주세요..

노력은 배반하지 않는다.

cinsk의 이미지

CARM으로 알려진 C: A Reference Manual을 보시거나, ISO C 표준을 보기 바랍니다. 개인적으로, 처음 보신다면 CARM을 먼저 보기를 권합니다.

일단 공짜?로 볼 수 있는 rationale을 먼저 보는 것도 좋은 방법입니다. http://www.cinsk.org/cfaqs/에 링크가 있습니다.

dionysos의 이미지

실력이 없으니 많이 배워만 가네요..^^;;

노력은 배반하지 않는다.

purewell의 이미지

dionysos wrote:
실력이 없으니 많이 배워만 가네요..^^;;

나중에 배운만큼 풀어주면 장땡.

_____________________________
언제나 맑고픈 샘이가...
http://purewell.biz

죠커의 이미지

일반적인 선언의 형태를 그대로 이용한다고 보시면 간단할 것 같습니다.

int (*func)(int a, int b);

이런게 있다면

typedef int (*pfunc)(int a, int b);
pfunc func;

이런식으로 쓰니깐요.

whitekid의 이미지

CN wrote:
typedef int (*pfunc)(int a, int b);
pfunc func;

안써본지 몇년 되니 이제 가물가물한 추억의 문법인에요.. 나중에 다시 C 할 수 있을려나.. ^^;.

What do you want to eat?

댓글 달기

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