标签: multithreading perl
是否可以在运行时加载模块require '/file_path/file_name.pm';,并在线程之间共享内存?
require '/file_path/file_name.pm';
基本上,我有一个线程池,如果线程#1决定加载模块,我希望模块可用于所有线程!
答案 0 :(得分:1)
“不,这是不可能的。 必须在创建线程之前加载模块,或者每个模块都加载模块 线程必须单独加载模块。“
感谢Dave Mitchell 1