上一页 1 ··· 24 25 26 27 28
摘要: 第一种:(通过String对象的charCodeAt方法) String.prototype.getBytesLength = function() { var length = 0; for(i = 0;i < this.length; i++) { iCode = this.charCodeAt(i); if((iCode >= 0 && iCode <= 2... 阅读全文
posted @ 2010-02-26 15:27 DODUI 阅读(1031) 评论(0) 推荐(0) 编辑
摘要: Convert.ToInt32 与 int.Parse 较为类似,实际上 Convert.ToInt32 内部调用了 int.Parse: * Convert.ToInt32 参数为 null 时,返回 0; * int.Parse 参数为 null 时,抛出异常。 * * Convert.ToInt32 参数为 "" 时,抛出异常; * int.Parse 参数为 "" 时,抛出异常。 * * Convert.ToInt32 可以转换的类型较多; * int.Parse 只能转换数字类型的字符串。Convert.ToInt32()与int.Parse( 阅读全文
posted @ 2010-02-24 12:04 DODUI 阅读(269) 评论(0) 推荐(0) 编辑
上一页 1 ··· 24 25 26 27 28