Global symbol requires explicit package name

后端 未结 6 1451
野的像风
野的像风 2020-12-01 10:38

Global symbol requires explicit package name? Why has this occurred and what are various cases that can cause this error?

6条回答
  •  臣服心动
    2020-12-01 11:15

    Have a look at perldiag:

    Global symbol "%s" requires explicit package name

    (F) You've said "use strict" or "use strict vars", which indicates that all variables must either be lexically scoped (using "my" or "state"), declared beforehand using "our", or explicitly qualified to say which package the global variable is in (using "::").

提交回复
热议问题