Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
24
Task/Time-a-function/Kotlin/time-a-function.kotlin
Normal file
24
Task/Time-a-function/Kotlin/time-a-function.kotlin
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
// version 1.1.2
|
||||
// need to enable runtime assertions with JVM -ea option
|
||||
|
||||
import java.lang.management.ManagementFactory
|
||||
import java.lang.management.ThreadMXBean
|
||||
|
||||
fun countTo(x: Int) {
|
||||
println("Counting...");
|
||||
(1..x).forEach {}
|
||||
println("Done!")
|
||||
}
|
||||
|
||||
fun main(args: Array<String>) {
|
||||
val counts = intArrayOf(100_000_000, 1_000_000_000)
|
||||
val threadMX = ManagementFactory.getThreadMXBean()
|
||||
assert(threadMX.isCurrentThreadCpuTimeSupported)
|
||||
threadMX.isThreadCpuTimeEnabled = true
|
||||
for (count in counts) {
|
||||
val start = threadMX.currentThreadCpuTime
|
||||
countTo(count)
|
||||
val end = threadMX.currentThreadCpuTime
|
||||
println("Counting to $count takes ${(end-start)/1000000}ms")
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue