关于Moose的最佳做法的经常看到的建议如下:
“The use
namespace::autoclean
bit is simply good code hygiene,as it removes imported symbols from your class’s namespace at the end of your package’s compile cycle,includingMoose
keywords. Once the class has been built,these keywords are not needed. (This is preferred to placingno Moose
at the end of your package).”
以Moose::Manual::BestPractices(重点为我).
我理解上述引用的一切,除了一件事情:为什么使用namespace :: autoclean比较适合在词法范围的末尾使用Moose?
它只是因为namespace :: autoclean是更多功能,允许更多的选择在其使用,或者有什么内在的方式实现(特别为Moose课程量身定做,这可以使它更可靠?
我发现没有文件澄清这一点,我很想知道正确的答案.