摘要:
文件和目录操作 [TOC] # 0. Handler和IO::File的比较 读写文件有两种方法: Handler和IO::File. 使用IO::File的好处是,可以把句柄当作参数,传给子例程。 ```perl use IO::File; my $file = "io.file"; #write 阅读全文
摘要:
数字处理 [TOC] # 1. cell/floor(向上/向下取整) ```perl use POSIX qw(ceil floor); #向上取整 print ceil(5.5); # 6 print ceil(6) ; # 6 print ceil(6.1); # 7 print ceil(6 阅读全文