#define에서 문장의 중간에 나타나는 #의 의미는?

haewoo의 이미지

#define TRACE(l,s)      { if (CheckTraceLev(l)) { TrcPrintf_##l s ; } }

#if ( defined (__GNUG__) && defined (_SYSTYPE_SVR4) ) || defined (__UNIX__)
#include <syslog.h>
#else
#define  LOG_EMERG     0  // An extreme emergency
#define  LOG_ALERT     1  // A condition that should be corrected immedialtely
#define  LOG_CRIT      2  // A critical condition like a hardware error
#define  LOG_ERR       3  // An error that require attention but is not critical
#define  LOG_WARNING   4  // A warning that an error condition may exist
#define  LOG_NOTICE    5  // A condition tha in not an error, but may need
                          // attention
#define  LOG_INFO      6  // An informational message (e.g., a message issued 
                          // when a server starts execution)
#define  LOG_DEBUG     9  // A message used by programmer for debugging
#endif

int  EXPORT TrcPrintf_LOG_EMERG   (const char *fmt, ...);
int  EXPORT TrcPrintf_LOG_ALERT   (const char *fmt, ...);
int  EXPORT TrcPrintf_LOG_CRIT    (const char *fmt, ...);
int  EXPORT TrcPrintf_LOG_ERR     (const char *fmt, ...);
int  EXPORT TrcPrintf_LOG_WARNING (const char *fmt, ...);
int  EXPORT TrcPrintf_LOG_NOTICE  (const char *fmt, ...);
int  EXPORT TrcPrintf_LOG_INFO    (const char *fmt, ...);
int  EXPORT TrcPrintf_LOG_DEBUG   (const char *fmt, ...);
int  EXPORT TrcPrintf_MAX_TRC_LEV (const char *fmt, ...);
int  EXPORT TrcPrintf_MIN_TRC_LEV (const char *fmt, ...);

int  EXPORT TrcPrintfDeb (int x, const char *fmt, ...);
int  EXPORT TrcPrintfTst (int x, const char *fmt, ...);
int  EXPORT TrcPrintfRel (int x, const char *fmt, ...);


int  EXPORT CheckTraceLev (const int level)
{
    return (CurTraceLev = level) <= TraceLevel;
}

// Logger 호출부분
TRACE(LOG_INFO,("File: %s version %s compiled on %s %s",file,id,date,time));

위의 소스에서 #define TRACE(l,s) { if (CheckTraceLev(l)) { TrcPrintf_##l s ; } }의 "#"이 뭘 의미하는 건가요???
C++은 그리 많이 사용해 보지 않아서.. 의미파악이 힘드네요..

ixevexi의 이미지

~~~##X 는

~~~X로 치환하라는 의미입니다. 페이스트 토큰인가?

명칭이 있는데.... 아무튼 뒤의 X토큰을 붙이는 역할을 합니다.

위의 예에서는

TRACE(l,s) 로 되어있으므로
중간에

TRACE(ixevexi, kldp)라면

{ if (CheckTraceLev(l)) { TrcPrintf_ixevexi kldp ; } }
가 될 것입니다.

C++, 그리고 C++....
죽어도 C++

haewoo의 이미지

감사...

댓글 달기

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