如何在Dart中获取当前进程的当前pid?

时间:2019-06-12 02:10:09

标签: dart

我需要弄清楚当前进程的pid, 但是我在Process.dart中找不到任何静态方法,如何获取?

1 个答案:

答案 0 :(得分:0)

导入 dart:io 并使用 pid 属性。

import 'dart:io';
...
print('pid: $pid');

https://api.dart.dev/stable/2.13.4/dart-io/Process/pid.html
https://api.flutter.dev/flutter/dart-io/pid.html