免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2192 | 回复: 2
打印 上一主题 下一主题

关于自己创建module的问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2003-07-10 09:21 |只看该作者 |倒序浏览
我写一测试module代码如下
test.pm

  1. package test;

  2. use 5.005;

  3. require Exporter;
  4. our @ISA = qw(Exporter);
  5. our %EXPORT_TAGS = ( 'all' =>; [ qw() ] );
  6. our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
  7. our @EXPORT = qw( );

  8. our $VERSION = '0.01';

  9. sub TestPrint {
  10.     print "test module";
  11. }
复制代码


  1. mtest.pl
  2. use test;

  3. test::TestPrint;
复制代码

在另一文件中调用该module时出现下面的
错误提示,请问是怎么回事,

Array found where operator expected at test.pm line 6, at end of line
        (Do you need to predeclare our?)
Operator or semicolon missing before %EXPORT_TAGS at test.pm line 7.
Ambiguous use of % resolved as operator % at test.pm line 7.
Array found where operator expected at test.pm line 8, at end of line
        (Do you need to predeclare our?)
syntax error at test.pm line 6, near "our @ISA "
syntax error at testl.pm line 8, near "our @EXPORT_OK "
BEGIN failed--compilation aborted at ./m_test.pl line 8.

谢谢帮忙!

论坛徽章:
1
荣誉会员
日期:2011-11-23 16:44:17
2 [报告]
发表于 2003-07-10 10:00 |只看该作者

关于自己创建module的问题

不要用our..全部去掉

论坛徽章:
0
3 [报告]
发表于 2003-07-10 10:00 |只看该作者

关于自己创建module的问题


  1. package test;

  2. use 5.005;

  3. require Exporter;
  4. @ISA = qw(Exporter);
  5. %EXPORT_TAGS = ( 'all' =>; [ qw() ] );
  6. @EXPORT_OK = qw( @{ $EXPORT_TAGS{'all'} } );
  7. @EXPORT = qw( TestPrint);

  8. $VERSION = '0.01';

  9. sub TestPrint {
  10.     print "test module\n";
  11. }

  12. 1;
复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP