我正在尝试获取其中使用了“MyClass”类的 .cpp 文件列表。
这是片段:
use File::Find::Rule;
my @match_files = File::Find::Rule->file()->name('*.cpp')->in('.')->grep("MyClass");
但是,这给出了以下错误:
Can't call method "grep" without a package or object reference at ./script.pl line 20.
有人可以帮我理解这个电话有什么问题吗?