Chinaunix首页 | 论坛 | 博客
  • 博客访问: 7769882
  • 博文数量: 701
  • 博客积分: 2150
  • 博客等级: 上尉
  • 技术积分: 13233
  • 用 户 组: 普通用户
  • 注册时间: 2011-06-29 16:28
个人简介

天行健,君子以自强不息!

文章分类

全部博文(701)

文章存档

2019年(2)

2018年(12)

2017年(76)

2016年(120)

2015年(178)

2014年(129)

2013年(123)

2012年(61)

发布时间:2013-04-02 12:29:12

Perl Data Structures CookbookPerl数据结构百科一、描述The single feature most sorely lacking in the Perl programming language prior to its 5.0 release was complex data structures. Even without direct language support, some valiant programmers did manage to emulate them, but it was har.........【阅读全文】

阅读(1930) | 评论(0) | 转发(0)

发布时间:2013-03-31 22:57:17

perl调试教程一、DESCRIPTIONA (very) lightweight introduction in the use of the perl debugger, and a pointer to existing, deeper sources of information on the subject of debugging perl programs.There's an extraordinary number of people out there who don't appear to know anything about .........【阅读全文】

阅读(3228) | 评论(0) | 转发(0)

发布时间:2013-03-26 18:01:16

1. Problem如何管理多个输入流The next input to your program could be coming from any number of filehandles, but you don't know which. You've tried using select( ), but the need to then do unbuffered I/O is more than you can deal with (and it's making your code very difficult.........【阅读全文】

阅读(3616) | 评论(0) | 转发(1)

发布时间:2013-03-24 20:30:06

简介: 本文首先概述了线程的概念和意义,接着回顾了 Perl 语言中对线程支持的演化历史,然后通过一系列示例重点介绍了 Perl 中线程的实现,数据的共享以及线程间的同步,最后归纳并总结了全文主要内容。一、线程概述线程是一个单一的执行流程,它是所有程序执行过程中最小的控制单位,即能被 CPU 所调度的最小.........【阅读全文】

阅读(2300) | 评论(0) | 转发(0)

发布时间:2013-03-12 14:57:40

一、ALARM方式示例程序:#!/usr/bin/perl$timeout = 2 ;while(1){  eval {    local $SIG{ALRM} = sub{print "sorry,time out.please try again\n"} ;    alarm $timeout ; #启动定时器    # 实际操作    print "hello world!\n" ;     sleep 3 .........【阅读全文】

阅读(1896) | 评论(0) | 转发(0)
给主人留下些什么吧!~~

七月羽歌2017-04-14 11:13

美的事物是永恒的喜悦。

回复  |  举报

七月羽歌2017-04-14 10:40

全局留言。哇,

回复  |  举报

指尖上的幽灵2015-03-17 18:05

看了你这么多东西,如果不留下点什么多说不过去啊!加油啊

回复  |  举报
留言热议
请登录后留言。

登录 注册