現在、このコードを使用しています
string now() {
time_t t = time(0);
char buffer[9] = {0};
strftime(buffer, 9, "%H:%M:%S", localtime(&t));
return string(buffer);
}
時間をフォーマットします。ミリ秒を追加する必要があるため、出力の形式は16:56:12.321
Boost's Posix Timeを使用できます。
boost::posix_time::microsec_clock::local_time()
を使用して、マイクロ秒の解像度のクロックから現在の時刻を取得できます。
_boost::posix_time::ptime now = boost::posix_time::microsec_clock::local_time();
_
次に、現在の日付の時間オフセットを計算できます(期間の出力は_<hours>:<minutes>:<seconds>.<milliseconds>
_の形式であるため、現在の日付オフセットとして計算されると仮定しています。そうでない場合は、別の期間/時間間隔の開始点):
_boost::posix_time::time_duration td = now.time_of_day();
_
次に、.hours()
、.minutes()
、.seconds()
アクセサーを使用して、対応する値を取得できます。
残念ながら、.milliseconds()
アクセサーはないようですが、.total_milliseconds()
アクセサーはあります。したがって、残りのミリ秒を文字列でフォーマットするために、少し減算することができます。
次に、sprintf()
(または移植性のないVC++のみのコードに関心がある場合はsprintf()_s
)を使用して、これらのフィールドを未加工のchar
バッファーにフォーマットします。この生のC文字列バッファを堅牢で便利な_std::string
_インスタンスにラップします。
詳細については、以下のコメントコードを参照してください。
コンソールの出力は次のようなものです。
11:43:52.276
サンプルコード:
_///////////////////////////////////////////////////////////////////////////////
#include <stdio.h> // for sprintf()
#include <iostream> // for console output
#include <string> // for std::string
#include <boost/date_time/posix_time/posix_time.hpp>
//-----------------------------------------------------------------------------
// Format current time (calculated as an offset in current day) in this form:
//
// "hh:mm:ss.SSS" (where "SSS" are milliseconds)
//-----------------------------------------------------------------------------
std::string now_str()
{
// Get current time from the clock, using microseconds resolution
const boost::posix_time::ptime now =
boost::posix_time::microsec_clock::local_time();
// Get the time offset in current day
const boost::posix_time::time_duration td = now.time_of_day();
//
// Extract hours, minutes, seconds and milliseconds.
//
// Since there is no direct accessor ".milliseconds()",
// milliseconds are computed _by difference_ between total milliseconds
// (for which there is an accessor), and the hours/minutes/seconds
// values previously fetched.
//
const long hours = td.hours();
const long minutes = td.minutes();
const long seconds = td.seconds();
const long milliseconds = td.total_milliseconds() -
((hours * 3600 + minutes * 60 + seconds) * 1000);
//
// Format like this:
//
// hh:mm:ss.SSS
//
// e.g. 02:15:40:321
//
// ^ ^
// | |
// 123456789*12
// ---------10- --> 12 chars + \0 --> 13 chars should suffice
//
//
char buf[40];
sprintf(buf, "%02ld:%02ld:%02ld.%03ld",
hours, minutes, seconds, milliseconds);
return buf;
}
int main()
{
std::cout << now_str() << '\n';
}
///////////////////////////////////////////////////////////////////////////////
_
Boostで時間を無駄にしないでください(多くの人がこの声明に腹を立て、異端だと考えています)。
このディスカッションには、非標準のサードパーティライブラリを使用する必要のない、非常に実行可能な2つのソリューションが含まれています。
C++でLinuxでミリ秒の時間を取得する-clock()が正しく動作しないようです
http://linux.die.net/man/3/clock_gettime
Gettimeofdayへの参照は、opengroup.orgにあります。
boost::posix_time
を使用できます。こちらをご覧ください SO question 。例:
boost::posix_time::time_duration diff = tick - now;
diff.total_milliseconds();
現在の時刻を取得するには:
boost::posix_time::ptime t1 = boost::posix_time::microsec_clock::local_time();
// ('tick' and 'now' are of the type of 't1')
C++ 11を使用できる場合は、 C++ 11 chrono も使用できます。例:
int elapsed_milliseconds = std::chrono::duration_cast<std::chrono::milliseconds>(end-start).count();
現在の時刻を取得するには(利用可能ないくつかの異なるクロックがあります。ドキュメントを参照してください):
std::chrono::time_point<std::chrono::system_clock> t2;
t2 = std::chrono::system_clock::now();
// ('start' and 'end' are of the type of 't2')
ミリ秒単位の時間では、真夜中から現在までの期間を取得できます。 std :: chronoを使用した例 :
unsigned int millis_since_midnight()
{
// current time
std::chrono::time_point<std::chrono::system_clock> now = std::chrono::system_clock::now();
// get midnight
time_t tnow = std::chrono::system_clock::to_time_t(now);
tm *date = std::localtime(&tnow);
date->tm_hour = 0;
date->tm_min = 0;
date->tm_sec = 0;
auto midnight = std::chrono::system_clock::from_time_t(std::mktime(date));
// number of milliseconds between midnight and now, ie current time in millis
// The same technique can be used for time since Epoch
return std::chrono::duration_cast<std::chrono::milliseconds>(now - midnight).count();
}
ChronoはC++ 11の一部になったため、Boost.Datetimeライブラリの代わりにBoost.Chronoを使用することをお勧めします。 ここの例
ここにブーストを使用せずに見つけた解決策があります
std::string getCurrentTimestamp()
{
using std::chrono::system_clock;
auto currentTime = std::chrono::system_clock::now();
char buffer[80];
auto transformed = currentTime.time_since_Epoch().count() / 1000000;
auto millis = transformed % 1000;
std::time_t tt;
tt = system_clock::to_time_t ( currentTime );
auto timeinfo = localtime (&tt);
strftime (buffer,80,"%F %H:%M:%S",timeinfo);
sprintf(buffer, "%s:%03d",buffer,(int)millis);
return std::string(buffer);
}