git 1 month ago
parent
commit
405f0c1935
1 changed files with 46 additions and 0 deletions
  1. 46 0
      src/main/kotlin/cn/qqck/kotlin/tools/Date.kt

+ 46 - 0
src/main/kotlin/cn/qqck/kotlin/tools/Date.kt

@@ -22,12 +22,58 @@ private val format_yMd = SimpleDateFormat("yyyy-MM-dd")
 private val format_Hms = SimpleDateFormat("HH:mm:ss")
 private val format_Hm = SimpleDateFormat("HH:mm")
 
+/**
+ * 将当前日期对象格式化为字符串,格式为“年-月-日 时:分:秒”。
+ *
+ * @return 格式化后的日期时间字符串。
+ */
 fun Date.yMdHms(): String = format_yMdHms.format(this)
+
+/**
+ * 返回日期的格式化字符串,格式为 "yyyy-MM-dd"。
+ *
+ * @return 一个表示当前日期的格式化字符串。
+ */
 fun Date.yMd(): String = format_yMd.format(this)
+
+/**
+ * 将当前日期对象格式化为 "时:分:秒" (HH:mm:ss) 格式的字符串。
+ *
+ * @return 格式化后的字符串,表示日期的时分秒部分。
+ */
 fun Date.Hms(): String = format_Hms.format(this)
+
+/**
+ * 根据当前日期对象格式化为"小时:分钟"的字符串表示(24小时制)。
+ *
+ * @return 返回格式化后的时间字符串,格式为"HH:mm"。
+ */
 fun Date.Hm(): String = format_Hm.format(this)
 
+/**
+ * 将当前时间戳(以毫秒为单位)格式化为字符串,格式为“年-月-日 时:分:秒”。
+ *
+ * @return 格式化后的日期时间字符串。
+ */
 fun Long.yMdHms(): String = Date(this).yMdHms()
+
+/**
+ * 将当前时间戳(以毫秒为单位)格式化为字符串,格式为 "yyyy-MM-dd"。
+ *
+ * @return 一个表示当前日期的格式化字符串。
+ */
 fun Long.yMd(): String = Date(this).yMd()
+
+/**
+ * 将当前时间戳(以毫秒为单位)格式化为 "时:分:秒" (HH:mm:ss) 格式的字符串。
+ *
+ * @return 格式化后的字符串,表示日期的时分秒部分。
+ */
 fun Long.Hms(): String = Date(this).Hms()
+
+/**
+ * 将当前时间戳(以毫秒为单位)格式化为"小时:分钟"的字符串表示(24小时制)。
+ *
+ * @return 返回格式化后的时间字符串,格式为"HH:mm"。
+ */
 fun Long.Hm(): String = Date(this).Hm()