Boost で時間を無駄にしないでください (多くの人がこの声明に腹を立て、それを異端と見なすことはわかっています)。
このディスカッションには、非標準のサード パーティ ライブラリの奴隷になる必要のない 2 つの非常に実行可能なソリューションが含まれています。
C++ が Linux でミリ秒単位の時間を取得する -- clock() が正しく動作していないようです
http://linux.die.net/man/3/clock_gettime
gettimeofday への参照は、opengroup.org にあります
Boost の 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()
があります 1;そのため、少し減算計算を行って、残りのミリ秒を文字列にフォーマットすることができます。
次に、 sprintf()
を使用できます (または sprintf()_s
移植性のない VC++ のみのコードに興味がある場合)、それらのフィールドを生の 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';
}
///////////////////////////////////////////////////////////////////////////////
ブーストを使用せずに見つけた解決策は次のとおりです
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);
}