As a side note, there’s no such thing as a list in scalar context. When you say
$scalar = (2, 5, 7, 9);
you’re using the comma operator in scalar context, so it uses the scalar comma operator.
the () are meaningless there. they just group.
as i keep saying parens in general in perl are for grouping and
syntax and not much else (to most newbie's surprise). they don't make lists.
they are useful to delineate where a list is (that is grouping).
The former is a scalar value; the latter an array slice, making it a list with one (scalar) value. You should use $ when
you want a scalar value (most of the time) and @ when you want a list with one scalar value in it (very, very rarely;
nearly never, in fact).
when you want a list with one scalar value in it (very, very rarely;nearly never, in fact).
8. 写一个简单的TCP Echo Server,在linux/unix环境运行,侦听在特定端口,接受用户的网络输入,并返回同样的数据给对方,能接受quit命令。
基本要求:
(1)无阻塞IO。
(2)daemon方式运行。
(3)能接受kill -HUP重启信号。
8. 参考答案:
此题没有标准答案,用多种方法都可以实现,比如进程、线程、IO Select、AnyEvent、POE等。
CPAN上关于此类应用的优秀模块多如繁星。例如这个AnyEvent的HTTP客户端:
http://search.cpan.org/~mlehmann/AnyEvent-HTTP-2.1/HTTP.pm
欢迎光临 Chinaunix (http://bbs.chinaunix.net/) | Powered by Discuz! X3.2 |