1.expr命令一般用于整数值,其一般格式为:expr argument operator argument一般的用法是使用expr做算术运算,如:[root@centos ~]# expr 10 + 2030$expr 30 / 3 / 25(注意运算符左右都有空格 ,如果没有空格表示是字符串连接 ...
分类:
系统相关 时间:
2016-11-19 13:14:20
阅读次数:
251
1/函数声明提升 函数声明: function a(){} 这个可放在任何位置 函数表达式: var a = function(){} 匿名函数,这个必须放在调用之前 每一个函数都有一个name属性,用于显示函数的名字,匿名函数的名字是“” a.name 2/递归 arguments.collee ...
分类:
其他好文 时间:
2016-11-19 12:09:17
阅读次数:
117
首页 > 精品文库 > mybatis报错Mapped Statements collection does not contain value for com.inter.IOper mybatis报错Mapped Statements collection does not contain va ...
分类:
移动开发 时间:
2016-11-17 19:34:55
阅读次数:
234
在JavaScript中,call、apply和bind是Function对象自带的三个方法,这三个方法的主要作用是改变函数中的this指向。 call、apply、bind方法的共同点和区别:apply 、 call 、bind 三者都是用来改变函数的this对象的指向的;apply 、 call ...
分类:
移动开发 时间:
2016-11-16 15:10:51
阅读次数:
256
英文文档: staticmethod(function) Return a static method for function. A static method does not receive an implicit first argument. The @staticmethod form ...
分类:
编程语言 时间:
2016-11-16 14:53:12
阅读次数:
206
本文转载至: http://www.aboutyun.com/thread-7358-1-1.html hadoop涉及输出文本的默认输出编码统一用没有BOM的UTF-8的形式,但是对于中文的输出window系统默认的是GBK,有些格式文件例如CSV格式的文件用excel打开输出编码为没有BOM的U ...
分类:
其他好文 时间:
2016-11-15 16:29:42
阅读次数:
186
JavaScript是一个绝冠全球的编程语言,可用于Web开发、移动应用开发(PhoneGap、Appcelerator)、服务器端开发(Node.js和Wakanda)等等。JavaScript还是很多新手踏入编程世界的第一个语言。既可以用来显示浏览器中的简单提示框,也可以通过nodebot或no ...
分类:
其他好文 时间:
2016-11-15 00:16:45
阅读次数:
230
字符串常用操作 移除空白 分割 长度 索引 切片 class str(basestring): """ str(object='') -> string Return a nice string representation of the object. If the argument is a s ...
分类:
编程语言 时间:
2016-11-14 15:42:10
阅读次数:
223
replace方法的语法是:stringObj.replace(rgExp, replaceText) 其中stringObj是字符串(string),reExp可以是正则表达式对象(RegExp)也可以是字符串(string),replaceText是替代查找到的字符串。。为了帮助大家更好的理解, ...
分类:
其他好文 时间:
2016-11-14 07:52:06
阅读次数:
146