가변인자 매크로 만들기~

dalant019의 이미지

#define TRACE(fmt, args...) printf(fmt, ##args)

리눅스에서 위를 잘 사용하고 있었는데 이것을 visual C++에 복사해서 썼더니 ㅠㅠ 안되네요~
문법은 같아야 되는 건 아닌지~ 이 문법은 정통파 계열이 아닌 것인지~ 아시는분 가르켜주세요~(이리저리 검색해봤지만 못 찾았습니다. 아~ 키워드가 안 생각나요 ㅠㅠ)

doldori의 이미지

이것은 gcc에서 확장으로 제공하는 문법이므로 당연히 다른 컴파일러에서는 쓸 수 없습니다.
C99의 표준 문법은
#define TRACE(fmt, ...) printf(fmt, __VA_ARGS__)
이고 이것은 gcc에서도 쓸 수 있습니다.
문제는 VC++ 최신 버전(.NET 2005)에서만 가능하다는 것이죠.

cinsk의 이미지

#define TRACE(fmt, ...) printf(fmt, __VA_ARGS__)

보다,

#define TRACE(...) printf(__VA_ARGS__)

가 낫습니다. 왜냐하면 TRACE("hello")와 같이 썼을 때, 전자의 경우 다음과 같이 확장되며, 문법 에러가 됩니다:

printf("hello", )

--
C FAQ: http://www.eskimo.com/~scs/C-faq/top.html
Korean Ver: http://www.cinsk.org/cfaqs/

bugiii의 이미지

매크로만으로 해결하는 것은 약간의 제약은 있지만

#define TRACE printf

라고하면 어디든지 사용할 수 있습니다. 릴리즈용으로 TRACE 를 제거하려면 2번의 추가적인 주석용 매크로 처리하도록 하면 됩니다. 이때 문제가 여러 라인에 걸친 함수 인자들이 주석처리되지 않는 것인데, 이런 문제 때문에 버전에 따라 디거빙용은 매크로, 릴리즈용으로는 비어있는 인라인 함수를 만들어서 사용하는 것이 좋습니다.

thyoo의 이미지

#ifndef NDEBUG
#define TRACE(_x_) printf _x_
#else
#define TRACE(_x_)
#endif

사용례

TRACE(("%d\n", 3));

윈도우즈에서는 printf보다
vsprintf_s와 OutputDebugString 조합을 쓰고
Visual Studio IDE 디벅 창이나
http://www.sysinternals.com/Utilities/DebugView.html 를 쓰는 편이 낫읍니다.
___________________________________
Less is More (Robert Browning)

___________________________________
Less is More (Robert Browning)

체스맨의 이미지

비슷한 질문에 전에도 두 세번쯤 있었습니다...

http://bbs.kldp.org/viewtopic.php?t=65565

Coral Library Project : http://coral.kldp.net
Orion Project : http://home.megapass.net/~heesc22/

Orion Project : http://orionids.org

댓글 달기

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