Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
$$perl中的part是什么意思?
$$
我在这段代码片段中找到了它:
my $unique = "P$$" . "M$microseconds";
$$表示当前的PID(进程ID)。所有预定义的 Perl 变量都可以在perlvar手册页中找到。
表示当前进程ID。见man perlvar。
man perlvar
在 Perl 中,继承了 Linux 的属性。它也可以接受一些功能。像这样,$$ 是当前进程的进程 ID。