함수 실행 시간 관련 정보를 텍스트로 출력하기

2606 단어
적절한 패키지 클래스 코드:
.h 파일
#pragma once
#include<iostream>
#include <time.h>
#include<fstream>
using namespace std;

class testTxtOutput
{
private:
	//    
	clock_t timeStart;
	//    
	clock_t timeEnd;
	//           
	clock_t runTime;
	//             
	 clock_t sumTime;
	//      
	 clock_t avgTime;
	//      
	 clock_t maxTime;
	//        
	 long countFrame;

public:
	//    
	void openClocker(void);
	//    
	void closeClocker();
	//               
	void writeToTxt(string funcName);
	//       
	void calculateTime();
public:
	testTxtOutput(void);
	~testTxtOutput(void);
	
};


 
.cpp 파일
#include "StdAfx.h"
#include "testTxtOutput.h"


testTxtOutput::testTxtOutput(void):
	timeStart(0),
	timeEnd(0),
	runTime(0),
	sumTime(0),
	avgTime(0),
	maxTime(0),
	countFrame(0)
{
}


testTxtOutput::~testTxtOutput(void)
{
}


void testTxtOutput::openClocker(void)
{
	timeStart = 0;
	runTime = 0;
	timeEnd = 0;
	timeStart = clock();
}


void testTxtOutput::closeClocker(void)
{
	timeEnd = clock();
}


void testTxtOutput::writeToTxt(string funcName)
{

	string cloneFunc =funcName;
	funcName += ".txt";
	calculateTime();
	ofstream fout;
	fout.open(funcName,ofstream::out | ofstream::app);
	fout<<cloneFunc.c_str()<<": "<<countFrame<<"   "
		<<"		"<<"    (ms):"<<runTime
		<<"		"<<"      (ms):"<<maxTime
		<<"		"<<"      (ms):"<<avgTime<<endl;
}

void testTxtOutput::calculateTime()
{
	countFrame++;
	runTime = timeEnd - timeStart;
	sumTime +=  runTime;
	avgTime = sumTime/countFrame;
	maxTime = maxTime>runTime ? maxTime : runTime;
}

 

main :

 

// txtoutput.cpp :              。
//

#include "stdafx.h"
#include"testTxtOutput.h"

int _tmain(int argc, _TCHAR* argv[])
{
	testTxtOutput out;
	out.writeToTxt("yangjie");

	system("pause");
	return 0;
}

사용 설명:
여러 번의 테스트 시간이 필요한 함수 실행 파일에 이것을 포함합니다.h 파일을 만들고 전체적인 실례를 만듭니다.테스트 함수 앞에는 openClocker (), 함수 뒤에는 closeClocker (), writeToTxt () 함수를 호출합니다.
   

좋은 웹페이지 즐겨찾기