📜  kotlin 日期转字符串 - Kotlin 代码示例

📅  最后修改于: 2022-03-11 14:53:34.245000             🧑  作者: Mango

代码示例2
//create an extension function on a date class which returns a string
    private fun Date.dateToString(format: String): String {
    //simple date formatter
        val dateFormatter = SimpleDateFormat(format, Locale.getDefault())
        
        //return the formatted date string
        return dateFormatter.format(this)
    }
    
    
    //call the extension function on a date object
    val timestampt = Date()
    val dateString = timestamp.dateToString("hh:mm a E dd-MMM")