함수에 전달 된 인자를 뿌리는 방법?

ddoman의 이미지

아래와 같은 함수가 있을 때

int func( int a, int b )

func : arg1 = 1, arg2 = 2 

혹은

func : a = 1, b = 2 

위와 같이 로그를 뿌리고 싶습니다. stdout이든 파일이든..

각종 전처리문이나 컴파일러의존적인 기능(gcc)을 이용해서라도
간편한 코드가 없을까요?

그리고 그 코드는
해당함수 안에 위치해야합니다.
목적이 디버깅용으로 로그를 보고 어느함수에 어느인자가 전달됐는지 뿌려주는것입니다.

완전히 간단하게
print_arguments() // 매크로든 함수든간에..

위처럼은 아니더라도
가장 짧은 코드는 없을까요?

print( arg1, arg2, arg3 ) 이정도라도..

아..글구 언어는 c++, 컴파일러는 GNU gcc/g++ 입니다.

ez8의 이미지

허접하지만, 만들어 본 겁니다.

안 좋기는 하지만 필요한 만큼, 템플릿을 추가하시면 될 겁니다.

#include <iostream>

#define PRINTARGUMENTS(...) PrintArguments(std::cout, __func__, __VA_ARGS__)

template <typename FuncName, typename First>
inline void PrintArguments(std::ostream& os, FuncName funcName, First a)
{
    os << funcName << " : " << "arg1 = " << a << std::endl;
}

template <typename FuncName, typename First, typename Second>
inline void PrintArguments(std::ostream& os, FuncName funcName, First a, Second b)
{
    os << funcName << " : " << "arg1 = " << a << ", arg2 = "<< b << std::endl;
}

template <typename FuncName, typename First, typename Second, typename Third>
inline void PrintArguments(std::ostream& os, FuncName funcName, First a, Second b, Third c)
{
    os << funcName << " : " << "arg1 = " << a << ", arg2 = "<< b << ", arg3 = " << c << std::endl;
}

void TestFunction(int a)
{
    PRINTARGUMENTS(a);
}

void TestFunction2(int a, const char* b)
{
    PRINTARGUMENTS(a, b);
}

void TestFunction3(int a, double b, bool flag)
{
    PRINTARGUMENTS(a, b, flag);
}

int main(void)
{
    TestFunction(10);

    TestFunction2(4, "Oh, hell yeah~");

    TestFunction3(8, 91.358, false);

    return 0;
}
happyjun의 이미지

gcc 라면 __func__ 대신에 __PRETTY_FUNCTION__ 가 더 이쁩니다.

----------------------------------------
http://moim.at
http://mkhq.co.kr

ddoman의 이미지

감사합니다.
아주 좋은 팁이네요 :) 두분 모두 감사합니다.

댓글 달기

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