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で何を意味しますか?
$$
私はこのコードスニペットでそれを見つけました:
my $unique = "P$$" . "M$microseconds";
は$$、現在の PID (プロセス ID) を意味します。定義済みのすべての Perl 変数は、perlvarのman ページにあります。
現在のプロセス ID を意味します。を参照してくださいman perlvar。
man perlvar