C++ Builder XE4, 10.2 Tokyo > TStopwatch를 사용한 경과 시간 표시
C++ Builder XE4
RAD Studio 10.2 Tokyo Update 2 (追記: 2017/12/28)
이벤트 개시 후의 경과 초수를 표시하고 싶다.
TStopwatch를 사용해 보았다.
참고 h tp // w w. 가자. jp / p 여과 라민 g / bcb / 110. HTML
#include <System.Diagnostics.hpp>
//#include <TimeSpan.hpp>
//Unit1.h
//---------------------------------------------------------------------------
#ifndef Unit1H
#define Unit1H
//---------------------------------------------------------------------------
#include <System.Classes.hpp>
#include <Vcl.Controls.hpp>
#include <Vcl.StdCtrls.hpp>
#include <Vcl.Forms.hpp>
#include <Vcl.ExtCtrls.hpp>
#include <System.Diagnostics.hpp> //
#include <TimeSpan.hpp> //
//---------------------------------------------------------------------------
class TForm1 : public TForm
{
__published: // IDE で管理されるコンポーネント
TTimer *Timer1;
TLabel *Label1;
TButton *B_start;
TButton *B_stop;
void __fastcall Timer1Timer(TObject *Sender);
void __fastcall B_startClick(TObject *Sender);
void __fastcall B_stopClick(TObject *Sender);
void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
private: // ユーザー宣言
TStopwatch m_stopwatch;
public: // ユーザー宣言
__fastcall TForm1(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TForm1 *Form1;
//---------------------------------------------------------------------------
#endif
Unit1.cpp
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include "Unit1.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource "*.dfm"
TForm1 *Form1;
//---------------------------------------------------------------------------
__fastcall TForm1::TForm1(TComponent* Owner)
: TForm(Owner)
{
m_stopwatch = TStopwatch::Create();
}
//---------------------------------------------------------------------------
void __fastcall TForm1::Timer1Timer(TObject *Sender)
{
int elpsd_sec = m_stopwatch.ElapsedMilliseconds / 1000;
String msg = IntToStr(elpsd_sec);
Label1->Caption = msg;
}
//---------------------------------------------------------------------------
void __fastcall TForm1::B_startClick(TObject *Sender)
{
m_stopwatch.Reset();
m_stopwatch.Start();
Timer1->Interval = 1000;
Timer1->Enabled = true;
}
//---------------------------------------------------------------------------
void __fastcall TForm1::B_stopClick(TObject *Sender)
{
Timer1->Enabled = false;
m_stopwatch.Stop();
}
//---------------------------------------------------------------------------
void __fastcall TForm1::FormClose(TObject *Sender, TCloseAction &Action)
{
m_stopwatch.Stop();
}
//---------------------------------------------------------------------------
m_stopwatch라는 하나의 인스턴스 변수로 관리할 수 있는 것이 장점일 수 있다.
Reference
이 문제에 관하여(C++ Builder XE4, 10.2 Tokyo > TStopwatch를 사용한 경과 시간 표시), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/7of9/items/617708013dbc6125ff75텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)