> elem(0)

问题描述 投票:0回答:1

这在iex控制台中工作正常。

iex(1)> spawn(fn -> :timer.tc(:timer, :sleep, [100]) |> elem(0) |> IO.puts end) #PID<0.106.0> 100603

但当我把同样的行 spawn(fn -> :timer.tc(:timer, :sleep, [100]) |> elem(0) |> IO.puts end) 在.exe脚本内 - 什么都没有发生,完全没有输出。

为什么会这样?我怎样才能测量函数的并行执行时间?

elixir
1个回答
© www.soinside.com 2019 - 2024. All rights reserved.