作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个问题:我想为我的模块 M 编写一个名为“copy”的方法。这个函数是导入函数 File::Copy::copy 的包装。所以我必须使用 File::Copy::copy 并定义我自己的副本。但是它会报错说复制被重新定义了。如何实现我的目标?
#M.pm
package M;
use File::Copy;
#... constructor and other methods
sub copy {
my $self = shift;
my $target = shift;
File::Copy::copy($self->{'PATH'},$target);
}
最佳答案
use File::Copy qw( ); # Don't import anything.
关于perl - 如何在 perl 中编写覆盖导入函数的模块函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12537657/
我是一名优秀的程序员,十分优秀!