| | |
| | | package com.flightfeather.uav |
| | | |
| | | import com.flightfeather.uav.common.utils.DateUtil |
| | | import com.flightfeather.uav.common.utils.FileExchange |
| | | import com.flightfeather.uav.common.utils.FileUtil |
| | | import com.flightfeather.uav.domain.entity.Company |
| | |
| | | |
| | | @Test |
| | | fun foo16() { |
| | | val list = listOf(1, 2, 3, 4, 5, 6) |
| | | val iterator = list.iterator().also { it.next() } |
| | | iterator.forEach { |
| | | println(it) |
| | | } |
| | | val d = "2023-06-13 00:01:50.0\t".trim().split(".")[0] |
| | | val t = DateUtil.instance.StringToDate(d, DateUtil.DateStyle.YYYY_MM_DD_HH_MM_SS) |
| | | println(d) |
| | | println(t) |
| | | } |
| | | |
| | | @Test |
| | | fun foo17() { |
| | | val a = listOf(1, 2, 3) |
| | | } |
| | | } |