Perl 子进程中的父进程变量

Parent process variables inside Child process in Perl

据我所知,system 是一个 OS 调用,而 child.pl 将是完全不同的过程,但我仍然有办法访问 $loggerAppLogger 对象在 child.pl 中,而无需每次我想记录时重新创建连接对象。

没有。 systemfork+exec+wait 的包装器。 exec替换进程中执行的程序,包括它的堆(内存)。