조언을 구합니다..주석처리에 대해서...

shean0의 이미지

안녕하세요...
매번느끼는 것 이지만.. 주석을 어떻게 만드시는지 궁금하여 ..이렇게 글을 적습니다.
윈도우 프로그래밍에는
assert를 사용하는데.. linux,unix 프로그래밍에서는 음...

모두 아시겠겠만..
#ifdef
printf, 또는 fprintf(fp, .... );
#endif

저는 개인적으로 define를 사용해서..
FILE * myfp
#define MYDEBUG 1
#ifdef MYDEBUG
#define ErrPrint fprintf
#else
#define ErrPrint /* fprintf */
#endif

이렇게 해두고...
Errprint(myfp," ^^* \n");
이렇게 중간중간에 디버깅을 하는데요...

음.. 여러 고견을 듣고 싶습니다..
매번 느끼지만.... 그냥.. 한번 생각을 시작하니..고민이 고민을 낳는군요..

datamind의 이미지

헤더화일에 아래처럼 define 하고서,

#define my_print( format, args ... ) my_log( __FILE__, __FUNCTION__, __LINE__, format, ## args )

함수를 다음과 같이 만들고,

void my_log( const char *file, const char *fun, unsigned int line, char *format, ... )
{
va_list v;
char buff[128];

va_start( v, format );
vsnprintf( buff, 127, format, v );
va_end( v );

printf("%s:%d - %s - %-15s \n", file, line, fun, buff );
}

그리고 나서 군데군데,

my_print( "%s", "hello" );

사용하면 됩니다.

datamind의 이미지

상기 내용중에 printf 를 수정하는 방법도 있습니다.
예를들어 열심히 코딩했는데,, printf 를 바꾸고자 할 경우에
다음과 같이 사용하실수도 있습니다.

헤더화일을 아래와 같이 수정하고,

#define printf( format, args... ) my_log( __FILE__, __FUNCTION__, __LINE__, format, ## args )

함수구현은 화일의 맨마지막에 첨부하야 합니다.

#ifdef printf
#undef printf
#endif

void my_log( const char *file, const char *fun, unsigned int line, char *format, ... )
{
va_list v;
char buff[128];

va_start( v, format );
vsnprintf( buff, 127, format, v );
va_end( v );

printf("%s:%d - %s - %-15s \n", file, line, fun, buff );
}

/* 이후로 printf 를 사용하면 적용이 안됩니다. */

사용방법은 상기와 동일...

댓글 달기

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