프로그램에서 로그를 어떻게 인쇄합니까?(3) VC++6.0과 BCB6.0은(는) 길어진 매개변수의 매크로를 지원하지 않습니다.

3500 단어
앞의 것을 이어서 말하다.그러나 유감스럽게도 VC++6.0이든 BCB6.0이든0, 모두 길어진 매개 변수의 매크로를 지원하지 않기 때문에 이런 환경에서 이전의 문제를 철저히 해결할 수 없다(VS2005에서 가능).이왕 이렇게 된 이상 우리는 그 다음을 구할 수밖에 없으니 매개 변수로 변하는 함수를 이용하여 우회적으로 해결합시다.
//---------------------------------------------------------------------------

#ifndef Unit1H
#define Unit1H
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>

#define POS __FUNC__, __LINE__, __FILE__

//---------------------------------------------------------------------------
class TForm1 : public TForm
{
__published:	// IDE-managed Components
    TButton *Button1;
    TButton *Button2;
    void __fastcall Button2Click(TObject *Sender);
    void __fastcall Button1Click(TObject *Sender);
private:	// User declarations
public:		// User declarations
    __fastcall TForm1(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TForm1 *Form1;
//---------------------------------------------------------------------------
#endif

 
//---------------------------------------------------------------------------

#include <vcl.h>
#pragma hdrstop
#include <wtypes.h>
#include <stdio.h>
#include <fstream>
#include <string>
using namespace std;


#include "Unit1.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource "*.dfm"
TForm1 *Form1;


void log(char *function, int line, char *file, char *format, ...)
{
	va_list args;
	va_start(args, format);
	char buf[1024] = {0};
	vsprintf(buf, format, args);
	va_end(args);

    SYSTEMTIME stCurTime = {0};
    GetLocalTime(&stCurTime);
    char szTime[128] = {0};
    sprintf(szTime, "%d-%d-%d %d:%d:%d", stCurTime.wYear, stCurTime.wMonth, stCurTime.wDay, stCurTime.wHour, stCurTime.wMinute, stCurTime.wSecond);

    char szLocation[2048] = {0};
    sprintf(szLocation, "%s ===> Function--->%s, Line: %d, File: %s", buf, function, line, file);

    char szLog[2048] = {0};
    sprintf(szLog, "%s %s ", szTime, szLocation);
    ofstream outfile("log.txt", ios::app);
    outfile << szLog << endl;
}

//---------------------------------------------------------------------------
__fastcall TForm1::TForm1(TComponent* Owner)
    : TForm(Owner)
{

}
//---------------------------------------------------------------------------

void __fastcall TForm1::Button1Click(TObject *Sender)
{
    log(POS, "HELLO");
}
//---------------------------------------------------------------------------

void __fastcall TForm1::Button2Click(TObject *Sender)
{
    int a = 1;
    log(POS, "WORLD%d", a);
}
//---------------------------------------------------------------------------


마지막으로 매개 변수로 변하는 매크로를 지원한다면 얼마나 좋을까요? 그때는 POS도 쓸 필요가 없습니다.VS2005 지원, 지원VA_ARGS__네?
자요.

좋은 웹페이지 즐겨찾기