回答:
以下のためのネット<= 4.0を使用するのTimeSpanクラス。
TimeSpan t = TimeSpan.FromSeconds( secs );
string answer = string.Format("{0:D2}h:{1:D2}m:{2:D2}s:{3:D3}ms",
t.Hours,
t.Minutes,
t.Seconds,
t.Milliseconds);
(Inder Kumar Rathoreによる指摘).NET> 4.0の場合は、
TimeSpan time = TimeSpan.FromSeconds(seconds);
//here backslash is must to tell that colon is
//not the part of format, it just a character that we want in output
string str = time .ToString(@"hh\:mm\:ss\:fff");
(Nick Molyneuxから)TimeSpan.MaxValue.TotalSeconds
例外を回避するために、秒数が1未満であることを確認してください。
以下のために.NET> 4.0を使用でき
TimeSpan time = TimeSpan.FromSeconds(seconds);
//here backslash is must to tell that colon is
//not the part of format, it just a character that we want in output
string str = time .ToString(@"hh\:mm\:ss\:fff");
または日付時刻形式が必要な場合は、これも行うことができます
TimeSpan time = TimeSpan.FromSeconds(seconds);
DateTime dateTime = DateTime.Today.Add(time);
string displayTime = dateTime.ToString("hh:mm:tt");
詳細については、カスタムTimeSpan形式文字列を確認できます
HH
そこでは無効です。
.NET/C#
.ToString(@"hh\:mm\:ss\:fff");
は既に24hr
フォーマットされています。HH
そのような入力ではエラーが発生しInput string was not in a correct format.
ます(エラーは)
私はいくつかのベンチマークを行って、最速の方法を確認しました。これらは私の結果と結論です。各メソッドを1,000万回実行し、実行あたりの平均時間をコメントに追加しました。
入力ミリ秒の場合 が1日に制限されていない(結果は143:59:59.999になる場合があります)、これらは高速から低速までのオプションです。
// 0.86 ms
static string Method1(int millisecs)
{
int hours = millisecs / 3600000;
int mins = (millisecs % 3600000) / 60000;
// Make sure you use the appropriate decimal separator
return string.Format("{0:D2}:{1:D2}:{2:D2}.{3:D3}", hours, mins, millisecs % 60000 / 1000, millisecs % 1000);
}
// 0.89 ms
static string Method2(int millisecs)
{
double s = millisecs % 60000 / 1000.0;
millisecs /= 60000;
int mins = millisecs % 60;
int hours = millisecs / 60;
return string.Format("{0:D2}:{1:D2}:{2:00.000}", hours, mins, s);
}
// 0.95 ms
static string Method3(int millisecs)
{
TimeSpan t = TimeSpan.FromMilliseconds(millisecs);
// Make sure you use the appropriate decimal separator
return string.Format("{0:D2}:{1:D2}:{2:D2}.{3:D3}",
(int)t.TotalHours,
t.Minutes,
t.Seconds,
t.Milliseconds);
}
入力ミリ秒の場合 が1日に制限されている(結果が23:59:59.999より大きくなることはありません)、これらは高速から低速までのオプションです。
// 0.58 ms
static string Method5(int millisecs)
{
// Fastest way to create a DateTime at midnight
// Make sure you use the appropriate decimal separator
return DateTime.FromBinary(599266080000000000).AddMilliseconds(millisecs).ToString("HH:mm:ss.fff");
}
// 0.59 ms
static string Method4(int millisecs)
{
// Make sure you use the appropriate decimal separator
return TimeSpan.FromMilliseconds(millisecs).ToString(@"hh\:mm\:ss\.fff");
}
// 0.93 ms
static string Method6(int millisecs)
{
TimeSpan t = TimeSpan.FromMilliseconds(millisecs);
// Make sure you use the appropriate decimal separator
return string.Format("{0:D2}:{1:D2}:{2:D2}.{3:D3}",
t.Hours,
t.Minutes,
t.Seconds,
t.Milliseconds);
}
入力がわずか数秒の場合場合、メソッドはわずかに高速になります。ここでも、入力秒数が1日に限定されていない場合(結果は143:59:59になる可能性があります):
// 0.63 ms
static string Method1(int secs)
{
int hours = secs / 3600;
int mins = (secs % 3600) / 60;
secs = secs % 60;
return string.Format("{0:D2}:{1:D2}:{2:D2}", hours, mins, secs);
}
// 0.64 ms
static string Method2(int secs)
{
int s = secs % 60;
secs /= 60;
int mins = secs % 60;
int hours = secs / 60;
return string.Format("{0:D2}:{1:D2}:{2:D2}", hours, mins, s);
}
// 0.70 ms
static string Method3(int secs)
{
TimeSpan t = TimeSpan.FromSeconds(secs);
return string.Format("{0:D2}:{1:D2}:{2:D2}",
(int)t.TotalHours,
t.Minutes,
t.Seconds);
}
そして、あなたの入力秒 が1日に制限されている(結果は23:59:59を超えることはありません):
// 0.33 ms
static string Method5(int secs)
{
// Fastest way to create a DateTime at midnight
return DateTime.FromBinary(599266080000000000).AddSeconds(secs).ToString("HH:mm:ss");
}
// 0.34 ms
static string Method4(int secs)
{
return TimeSpan.FromSeconds(secs).ToString(@"hh\:mm\:ss");
}
// 0.70 ms
static string Method6(int secs)
{
TimeSpan t = TimeSpan.FromSeconds(secs);
return string.Format("{0:D2}:{1:D2}:{2:D2}",
t.Hours,
t.Minutes,
t.Seconds);
}
最後のコメントとして、ではなくstring.Format
を使用した方が少し速いことに気づいたことを付け加えておきます。D2
00
TimeSpan.FromSeconds(80);
http://msdn.microsoft.com/en-us/library/system.timespan.fromseconds.aspx
TimeSpan
このためにクラスを使用することをお勧めします。
public static void Main(string[] args)
{
TimeSpan t = TimeSpan.FromSeconds(80);
Console.WriteLine(t.ToString());
t = TimeSpan.FromSeconds(868693412);
Console.WriteLine(t.ToString());
}
出力:
00:01:20
10054.07:43:32
以下のために.NET <4.0:(EX ユニティ)あなたが持っている拡張メソッドを書くことができるTimeSpan.ToString(string format)
ような挙動4.0 .NETを>
public static class TimeSpanExtensions
{
public static string ToString(this TimeSpan time, string format)
{
DateTime dateTime = DateTime.Today.Add(time);
return dateTime.ToString(format);
}
}
コードのどこからでも、次のように使用できます。
var time = TimeSpan.FromSeconds(timeElapsed);
string formattedDate = time.ToString("hh:mm:ss:fff");
このようTimeSpan
に、コードの任意の場所からToStringを呼び出すだけで、任意のオブジェクトをフォーマットできます。
DateTime.AddSeconds()があるのに、なぜTimeSpan と DateTime が必要なのですか?
var dt = new DateTime(2015, 1, 1).AddSeconds(totalSeconds);
日付は任意です。totalSecondsは59より大きくすることができ、doubleです。次に、DateTime.ToString()を使用して、必要に応じて時間をフォーマットできます。
dt.ToString("H:mm:ss");
totalSeconds <0または> 59の場合、これは機能しません。
new DateTime(2015, 1, 1, 0, 0, totalSeconds)
private string ConvertTime(double miliSeconds)
{
var timeSpan = TimeSpan.FromMilliseconds(totalMiliSeconds);
// Converts the total miliseconds to the human readable time format
return timeSpan.ToString(@"hh\:mm\:ss\:fff");
}
//テスト
[TestCase(1002, "00:00:01:002")]
[TestCase(700011, "00:11:40:011")]
[TestCase(113879834, "07:37:59:834")]
public void ConvertTime_ResturnsCorrectString(double totalMiliSeconds, string expectedMessage)
{
// Arrange
var obj = new Class();;
// Act
var resultMessage = obj.ConvertTime(totalMiliSeconds);
// Assert
Assert.AreEqual(expectedMessage, resultMessage);
}
これはhh:mm:ss形式で返されます
public static string ConvertTime(long secs)
{
TimeSpan ts = TimeSpan.FromSeconds(secs);
string displayTime = $"{ts.Hours}:{ts.Minutes}:{ts.Seconds}";
return displayTime;
}
ConvertTime(80)
はと0:1:20
をConvertTime(61)
返します0:1:1
。どちらもh:m:s
です。また、文字列補間ToString()
を使用すると、他の回答で使用されているように、よりもコードが長くなり、フォーマットされた文字列の長さを視覚化することも困難になります。
using System;
クラスはにありSystem.TimeSpan
ます。