徐小玉的博客。
发布时间:2020-03-25 14:53:19
Chapter 13. Does This Job Require a Reference? 硬引用(hard reference)是一种标量型变量,其中含有其他类型数据的地址。 A symbolic reference names another variable rather than just pointing to a value. 一个符号引用(symbolic reference)能为另一个变量命名,而不是指向其变量值.........【阅读全文】
发布时间:2019-11-01 11:37:39
把大象装入冰箱,需要三步。在perl中装载自己的模块,也同样需要三步。(MacOS下测试通过。)1: 先创建一个自己的模块库:/Users/mc/codes/perl/mylib2:在这个模块库下,创建一个模块:average.pl:cat average.pl#!/usr/bin/perl package average; # Declare a package # Avera.........【阅读全文】
发布时间:2019-10-25 18:10:11
就像福尔摩斯说的,太阳底下就没啥新东西,不过就是来来回回地重复罢了。我怎敢例外! 所以这里不过是stat函数的perldoc的内容。加上适当理解和注释等等,以其能更好被理解和取用。随着“作案”手法的改进,不定期更新,争取成为连大侦探也会虎躯一震的有用存在。......【阅读全文】
发布时间:2019-10-22 11:15:20
localtime EXPRlocaltime引用方法:my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime;$sec,$min,$hour : seconds, minutes, and hours of the specified time.$mday : the day of the month $mon &n.........【阅读全文】