标签: dart
我需要获取Dart中当前线程的ID。类似于我在Java(或C#)中的操作方式:
Thread.currentThread().getId()
答案 0 :(得分:1)
来晚了一点,但我认为Isolate.current.debugName应该会为您提供所需的内容。
Isolate.current.debugName
答案 1 :(得分:0)
您是否在谈论正在运行的程序的进程ID?因为使用dart:io:的pid属性是可行的
https://api.dartlang.org/stable/2.3.1/dart-io/pid.html