
python
卢凯文
后端开发工程师,PHP/Java,喜欢开源技术
展开
-
优秀Python学习资源收集汇总(强烈推荐)
Python是一种面向对象、直译式计算机程序设计语言。它的语法简捷和清晰,尽量使用无异义的英语单词,与其它大多数程序设计语言使用大括号不一样,它使用縮进来定义语句块。与Scheme、Ruby、Perl、Tcl等动态语言一样,Python具备垃圾回收功能,能够自动管理内存使用。它经常被当作脚本语言用于处理系统管理任务和网络程序编写,然而它也非常适合完成各种高级任务。 Python上手虽然容易,转载 2014-02-14 13:04:16 · 716 阅读 · 0 评论 -
12 Programming Languages in the Modern Web/Mobile World of 2014
If you like a developer in web and mobile industry surely you should have understanding of at least one programming language from this list. The modern world is based on the technology, there is as a转载 2014-03-04 00:13:47 · 1002 阅读 · 0 评论 -
Python 教程推荐
包含python2.7和3.0 http://www.runoob.com/python3/python3-tutorial.html原创 2016-05-09 14:22:43 · 2095 阅读 · 0 评论 -
函数传参类型:按值传递,按引用传递,按共享传递
按共享传递 call by sharing 准确的说,JS中的基本类型按值传递,对象类型按共享传递的(call by sharing,也叫按对象传递、按对象共享传递)。最早由Barbara Liskov. 在1974年的GLU语言中提出。该求值策略被用于Python、Java、Ruby、JS等多种语言。 参考:JS是按值传递还是按引用传递 http://www.jb51.net/ar原创 2016-09-13 18:37:57 · 742 阅读 · 0 评论