cast 형변환 질문입니다.

하하의 이미지

질문 드립니다.

main( )
{
:
:
pthread_create( &tid, NULL, function, (void*)arg);
:
}

void* function( void* arg )
{
int val = (int)arg;

이렇게 쓰레드에 argument를 넘겨 줄때 (void*)arg

이런 식으로 넘겨주는데

받을 때

int val = (int)arg;

이렇게 해야지

int val = (int *)arg;

이렇게 쓴다면

warning 이 떨어 집니다.
(initialization makes integer from pointer without a cast)
(int) arg 하면 arg를 정수형으로 변환 하는게 아닌지요?

왜 그래야 하는지 이해가 안가서 이렇게 질문 올립니다.

그럼 즐거운 하루 되세요....

sangwoo의 이미지

하하 wrote:

받을 때

int val = (int)arg;

이렇게 해야지

int val = (int *)arg;

이렇게 쓴다면

warning 이 떨어 집니다.
(initialization makes integer from pointer without a cast)
(int) arg 하면 arg를 정수형으로 변환 하는게 아닌지요?

val가 int *가 아니라 int이기 때문이 아닌가요?

----
Let's shut up and code.

ssehoony의 이미지

int val = (int *)arg;

이게 int* val = (int*)arg;
이런식으로 void * 를 int * 로 했기 때문에 받는 곳도 int * 로 해서
포인터를 받아야 할거에요. 그래서 경고가 뜨는 것일겁니다.

님께서 넘기는 값 타입이 void * 여도 실재 내부 값은 int 여서

int arg = 3000;
pthread_create( &tid, NULL, function, (void*)arg); 

위와 같이 강제적으로 void * 로 int 를 타입캐스팅 해서 넘기셨다면
int val = (int *)arg;
에 대해 코드 작성은 옮바른 것이겠지만 컴파일러 입장에서는 경고문구가
나올 수 밖에 없는 듯 하네요.

int* arg = new int(3000);
pthread_create( &tid, NULL, function, (void*)arg); 

이렇게 값을 넘기고
int* val = (int*)arg;
이렇게 받아서 사용하는게 경고 없는 좋은 코딩습관이 아닐까 하는
개인적인 생각이 듭니다.
new(C 로 작성하신다면 malloc) 로 생성했으니 메모리 삭제하시는거 잊지 말고 잘 챙겨주고요.

댓글 달기

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