[완료]pointer to function

puresupe의 이미지

TCPL 2nd. 119페이지를 보다가 stdlib.h에 있는 void qsort(void *v[], int left, int right, int (*comp)(void *,void *))를 사용하는 예제를 봤는데요
실제로 소스에선

qsort((void **)lineptr, 0, nlines-1, (int (*)(void*,void*)(numeric? numcmp : strcmp));

이렇게 사용하더라구요. numeric 값에따라서. 비교함수를 numcmp()를 사용할것인지 strcmp()를 사용할것인지 선택하게끔하는부분이지요.

위 qsort() 호출에서 (int (*)(void*,void*)) 이부분을 모르겠더라구요.
만약에. strcmp함수를 호출할거면. 그냥 strcmp만 써주만 되지 않나여?

책에서설명이 깊지 않아서 여쭙습니다. 덜덜덜..

koeikim의 이미지

타입 캐스팅이라고 생각하시면 됩니다.

int strcmp(const char *s1, const char *s2); 이 int cmp( void *, void * ); 랑 맞지 않아서 강제로 캐스팅을 하는거네요.

다음 typedef 가 있다고 치면 이해하시기 편할꺼 같네요.

/* 리턴타입이 int이고 인자를 (void *, void *)를 받는 함수 포인터 타입을 ptr_cmp로 정의합니다. */
typedef int (*ptr_cmp)(void *,void *) ;

qsort함수가 다음과 같은 거겠죠?
void qsort(void *v[], int left, int right, ptr_cmp cmp);

그러면 실제 호출부분은 다음과 같이 된다고도 볼 수 있겠죠 ^^:

qsort((void **)lineptr, 0, nlines-1, ((ptr_cmp)(numeric? numcmp : strcmp));

sixmen의 이미지

typedef int (*compfunc)(void *, void *);

라는 typedef가 있다고 생각하면 위 코드는

qsort((void **)lineptr, 0, nlines-1, (compfunc)(numeric? numcmp : strcmp));

와 동일합니다.
qsort가 요구하는 type이 'int (*)(void *, void *)' 인데
strcmp는 'int (*)(const char *, const char *)' 니까

타입 캐스팅이 없다면 warning이나 error가 뜰 듯 합니다.

puresupe의 이미지

답변 감사합니다. :D

댓글 달기

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