아래좀 봐주세요.

jee89의 이미지

#include <stdio.h>
#include <string.h>

int func( const void *s1 , const void *s2 );
int func2( const void **s );

int main()
{
char str[20];
char str2[20];
char *str3;
strcpy( str , "abc" );
strcpy( str2 , "xyz" );
func( str , str2 ); /* -->여기서는 이상없음 */
func2( &str3 ); /* --> 여기서 경고발생 */
fprintf( stderr , "str3 [%s]\n" , str3 );
return 0;
}

int func( const void *s1 , const void *s2 )
{
fprintf( stderr , "s1[%s] , s2[%s]\n" , s1 , s2 );
}

int func2( const void **s )
{
static char str[30] = "abcdefghijklmnopqrstuvwxyz";
*s = str;
}

------------위를 컴파일하면
"z4.c", line 15 warning argument #1 is incompatible with prototype
prototype pointer to pointer to const void "z4.c", line 5
argument pointer to pointer to char

와 같은 warning이 발생합니다.

func( str , str2 ); 에서도 똑같이 warning이 발생해야 옳지않나요?

박계현의 이미지

line 15번째 debuged 코드

int main(void)
{
....
.......
func2(str3);
.........
.......
}
.........
...........
void func2(const void *s) {
   char str[30] = "abcdef....";
   s = str;
}

warning은 뜨지 않겠지만, func2함수의 str 배열의 주소를
str3 char형 포인터 변수가 가르키게 하면 main함수에서
str3을 출력해보면 "abcde...." 과연 뜰까요?

func2함수의 char형 배열 str은 자동공간이라서 func2함수의
제어가 main()으로 넘어가면서 str은 메모리가 자동으로 해제가
됩니다.

당연히 char형 포인터 str3을 func2함수의 str의 주소를
가르키지만 메모리가 해제되므로 출력은 되지 않거나, 알수없는
값이 출력이 될것입니다.

이때에는 func2함수의 str을 외부에다가 정의하는 방법과 함수안에
static 키워드를 붙이는 방법이 있습니다.

또는 str배열을 main()에 넣고, func2함수를 인라인으로 이용하는것이
있겠습니다.

최종호의 이미지

void **vpp;
에는 다른 형의 포인터의 포인터를 못 넣는 것 같습니다.
char *cp;
를 정의해서 vpp = &cp; 처럼 저도 한번 해 봤는데,
말씀하신 것처럼 warning이 발생하더라구요.
void **vpp;
가 되면 이건 더이상 void 포인터가 아니라 void 포인터를 가리키는
포인터가 되어서 가리키는 대상이 꼭 void 포인터가 되어야 하나봅니다.

void *vp;
vp = &cp;
는 문제없습니다. 어떤 포인터도 void 포인터에는 할당할 수 있으니까요.

몇가지 방법을 생각해 보면,
1. 함수호출시 캐스팅해서 호출
func2((void **) &str3 );

2. 함수내에서 캐스팅
int func2( const void *s )
{
static char str[30] = "abcdefghijklmnopqrstuvwxyz";
*(char **)s = str;
}

3. 그외 방안...

암튼 void 포인터의 포인터는 더이상 void 포인터의 성격을 갖지 않는 듯 합니다. 포인터의 포인터(의 포인터의....) 도 그냥 void 포인터로 처리하셔야 할 듯.

댓글 달기

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