feixingfei

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2008年12月16日

摘要: 作者 Joel Confino译者 张凯峰jQuery是个强大而非侵入式的JavaScript库,但它的名字起得很差劲。它的简洁而高可读性的语法再次激发了我编写JavaScript 代码的兴趣。它的非侵入性能让它只需要对既有代码做小小的修改,就能很容易为web应用添加一些丰富的功能——比如后台表单提交。当你工作在一个很大的代码库,或者扩展性的重构无法取得成效时,非侵入的特性显得尤其重要。我的老板不会给我四周的时间推倒重来,为一个已经存在的网站添加一些视觉效果。但我也许可以有四个小时的时间,而这对jQuery来说足够了。http://www.infoq.com/cn/articles/F... 阅读全文
posted @ 2008-12-16 18:42 feixingfei 阅读(109) 评论(0) 推荐(0)

摘要: 托尼·霍尔博士Tony Hoare or C.A.R. Hoare, born 11 January 1934Tony Hoare's interest in computing was awakened in the early fifties, when he studied philosophy (together with Latin and Greek) at Oxford University, under the tutelage of John Lucas. He was fascinated by the power of mathematical logi 阅读全文
posted @ 2008-12-16 16:30 feixingfei 阅读(276) 评论(0) 推荐(0)

摘要: JSR是Java Specification Requests的缩写,意思是Java 规范请求。是指向JCP(Java Community Process)提出新增一个标准化技术规范的正式请求。任何人都可以提交JSR,以向Java平台增添新的API和服务。JSR已成为Java界的一个重要标准。Neal GafterNeal Gafter works for Microsoft on thedotNet platform languages. To balance his life, his hobby is designingand developing the future of the J 阅读全文
posted @ 2008-12-16 16:06 feixingfei 阅读(176) 评论(0) 推荐(0)

摘要: The functional programming paradigm was explicitly created to support a pure functional approach to problem solving. Functional programming is a form of declarative programming.In contrast, most mainstream languages, including object-orientedprogramming (OOP) languages such as C#... 阅读全文
posted @ 2008-12-16 14:10 feixingfei 阅读(227) 评论(0) 推荐(0)

摘要: 八大基本数据类型boolean,char,short,byte,int,long,float,double 八大基本数据类型的包装类Boolean,Character,Short,Byte,Integer,Long,Float,Double short,byte,char在进行运算时会自己转化成int型 例如: byte a=0,b=4; byte c=a+b;----编译出错 byte c=(byte)(a+b);----- a,b自动转化成int型再运算 以下是基本数据的参数查找优先级 boolean参数查找优先级:boolean,Boolean s... 阅读全文
posted @ 2008-12-16 08:57 feixingfei 阅读(142) 评论(0) 推荐(0)