免费注册 查看新帖 |

Chinaunix

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

倡仪一下,大家一起来把网站perldoc.perl.org相关文档翻译一下!!! [复制链接]

论坛徽章:
3
2015亚冠之阿尔希拉尔
日期:2015-08-15 16:33:2215-16赛季CBA联赛之四川
日期:2016-01-03 13:37:0515-16赛季CBA联赛之四川
日期:2016-06-13 15:53:36
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2015-07-11 17:19 |只看该作者 |倒序浏览
本帖最后由 minirain 于 2015-07-11 17:41 编辑

倡仪一下,大家一起来把网站如:http:\/\/perldoc.perl.org/perlre.html、http:\/\/perldoc\.perl\.org/perlop.html相关文档翻译一下!!!
便于初学者或大佬们查询用,可以吗?
  1. perlop perl运算符
  2. 目录
  3. NAME  名称
  4. DESCRIPTION  perl运算符描述
  5. Operator Precedence and Associativity 优先操作符及关联操作符
  6. Terms and List Operators (Leftward) 词法及列表操作 (左侧)
  7. The Arrow Operator 箭头操作符
  8. Auto-increment and Auto-decrement 自动增与自动减运算
  9. Exponentiation 幂指数运算
  10. Symbolic Unary Operators 一元运算
  11. Binding Operators 组合运算
  12. Multiplicative Operators 乘法运算
  13. Additive Operators 加法运算
  14. Shift Operators 移位操作
  15. Named Unary Operators 已命名一元操作符
  16. Relational Operators 关系运算符
  17. Equality Operators 等号运算符
  18. ?Smartmatch Operator 智能匹配操作
  19. Bitwise And 位与
  20. Bitwise Or and Exclusive Or 或与异或
  21. C-style Logical And  C语言风格逻辑与
  22. C-style Logical Or  C语言风格逻辑或
  23. Logical Defined-Or
  24. Range Operators 范围操作(..)
  25. Conditional Operator 条件运算
  26. Assignment Operators 赋值操作
  27. Comma Operator 逗号运算
  28. List Operators (Rightward) 列表运算(右侧)
  29. Logical Not 逻辑非
  30. Logical And 逻辑与
  31. Logical or and Exclusive Or 逻辑或 和 逻辑异或
  32. C Operators Missing From Perl perl中没有而c语言中有的运算符
  33. Quote and Quote-like Operators 引号及类引号运算
  34. Regexp Quote-Like Operators 正则表达式类引号运算
  35. Quote-Like Operators 类引号操作
  36. Gory details of parsing quoted constructs
  37. ?I/O Operators
  38. ?Constant Folding
  39. ?No-ops
  40. ?Bitwise String Operators
  41. Integer Arithmetic 整数运算
  42. Floating-point Arithmetic 浮点运算
  43. Bigger Numbers 大数字处理(超过标量存储范围)




  44. NAME (名称:)

  45. perlop - Perl operators and precedence perl运算及优先级

  46. DESCRIPTION(概述)

  47. In Perl, the operator determines what operation is performed, independent of the type of the operands. For example $x + $y is always a numeric addition, and if $x or $y do not contain numbers, an attempt is made to convert them to numbers first.
  48. 在perl程序中,操作符决定完成什么操作,不受操作数类型所支配(独立于操作数类型的)。例如$x+$y总是作数字加法运算,$x、$y任何一个如果是非数值,[perl编译]试着首先将非数值型转换成数值型。
  49. This is in contrast to many other dynamic languages, where the operation is determined by the type of the first argument. It also means that Perl has two versions of some operators, one for numeric and one for string comparison. For example $x == $y compares two numbers for equality, and $x eq $y compares two strings.
  50. 这就与其它动态语言运算时是靠第一个数值类型决定什么操作形成对照,也就是说perl中有两种比较运算操作:数值运算、字符运算。例如$x == $y是比较两个数值是否相等,然而$x eq $y是比较两字符串是否相等
复制代码

论坛徽章:
46
15-16赛季CBA联赛之四川
日期:2018-03-27 11:59:132015年亚洲杯之沙特阿拉伯
日期:2015-04-11 17:31:45天蝎座
日期:2015-03-25 16:56:49双鱼座
日期:2015-03-25 16:56:30摩羯座
日期:2015-03-25 16:56:09巳蛇
日期:2015-03-25 16:55:30卯兔
日期:2015-03-25 16:54:29子鼠
日期:2015-03-25 16:53:59申猴
日期:2015-03-25 16:53:29寅虎
日期:2015-03-25 16:52:29羊年新春福章
日期:2015-03-25 16:51:212015亚冠之布里斯班狮吼
日期:2015-07-13 10:44:56
2 [报告]
发表于 2015-07-11 18:59 |只看该作者
我敢说母语是英语的新手 perler 都看不懂,文档写的很精确但是缺乏阐述,回头来看其实它什么都告诉你了,但是当时就是领悟不到

论坛徽章:
3
2015亚冠之阿尔希拉尔
日期:2015-08-15 16:33:2215-16赛季CBA联赛之四川
日期:2016-01-03 13:37:0515-16赛季CBA联赛之四川
日期:2016-06-13 15:53:36
3 [报告]
发表于 2015-07-11 19:21 |只看该作者
回复 2# zhlong8
是的,计算机语言解释(-h or -help)文档是用很精简语言写的,需要实践才能明白。
正则表达式中新增加修饰符 /r就一句解释    “r  - perform non-destructive substitution and return the new value”  ”执行非破坏性替代并返回新的值”理解起来还真费劲!

   

论坛徽章:
1
辰龙
日期:2014-05-15 19:37:15
4 [报告]
发表于 2015-07-13 08:24 |只看该作者
回复 1# minirain


    我原来收集过一些前辈们译的 Perldoc 文章. http://cpan.php-oa.com/
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP