Elixir语言中 System.pid
相关用法介绍如下。
用法:
pid()
(从 1.9.0 开始)
@spec pid() :: String.t()
返回当前 Erlang 运行时系统实例的操作系统 PID。
返回包含进程的(通常)数字标识符的字符串。在Unix-like 操作系统上,这通常是getpid()
系统调用的返回值。在 Windows 上,使用 GetCurrentProcessId()
系统调用返回的进程 ID。
例子
System.pid()
相关用法
- Elixir System.stop用法及代码示例
- Elixir System.fetch_env!用法及代码示例
- Elixir System.fetch_env用法及代码示例
- Elixir System.get_env用法及代码示例
- Elixir System.cmd用法及代码示例
- Elixir System.halt用法及代码示例
- Elixir System.build_info用法及代码示例
- Elixir System.shell用法及代码示例
- Elixir System.restart用法及代码示例
- Elixir System用法及代码示例
- Elixir StringIO.flush用法及代码示例
- Elixir Stream用法及代码示例
- Elixir String.contains?用法及代码示例
- Elixir String.reverse用法及代码示例
- Elixir Stream.drop_while用法及代码示例
- Elixir String.to_integer用法及代码示例
- Elixir Stream.map_every用法及代码示例
- Elixir Stream.iterate用法及代码示例
- Elixir String.pad_trailing用法及代码示例
- Elixir Stream.dedup_by用法及代码示例
- Elixir Stream.interval用法及代码示例
- Elixir String.split_at用法及代码示例
- Elixir String.valid?用法及代码示例
- Elixir String.replace_prefix用法及代码示例
- Elixir String.printable?用法及代码示例
注:本文由纯净天空筛选整理自elixir-lang.org大神的英文原创作品 System.pid()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。