Linux32位,下载eclipse-cpp-luna-R-linux-gtk.tar.gz和jre-8u11-linux-i586.rpm 放到家目录中。
http://www.eclipse.org/downloads/?osType=linux&release=undefined, Eclipse IDE for C/C++ Developers
http://www.oracl...
分类:
编程语言 时间:
2014-08-09 15:54:28
阅读次数:
363
1.类型定义JS是一种弱类型语言。JS拥有动态类型,相同的变量可以用作不同的类型。JS有7种数据类型:三种基本类型(数字,字符串,布尔),两种引用数据类型(对象,数组),两种特殊数据类型(undefined,null)。JS有5种原始类型:数字,字符串,布尔,undefined,null。typeo...
分类:
Web程序 时间:
2014-08-08 20:42:26
阅读次数:
410
1.页面跳转错误:Uncaught TypeError: Cannot read property 'afCSS3AnimateId' of undefined
原因:data-defer="" 跳转路径不正确
解决:路径正确即可
2.程序正在启动的圈圈一直
原因:转id冲突,出现重名id
解决:id冲突,出现重名id...
分类:
移动开发 时间:
2014-08-08 16:08:46
阅读次数:
264
Description
An encoding of a set of symbols is said to be immediately decodable if no code for one symbol is the prefix of a code for another symbol. We will assume for this problem that all ...
分类:
其他好文 时间:
2014-08-08 12:52:26
阅读次数:
267
前言: 帮客户做一个订单系统,需要一个日期1,一个日期2,默认情况下日期1为当天,日期2为明天,只是当时有些疑惑的是日期2偶尔会出现NAN的情况,今天在segmentfault.com看到了同样的问题,于是我觉得有必要再重温一下当时的问题。好好做一下到底是为什么?以下代码有问题,不建议直接使用,只....
分类:
Web程序 时间:
2014-08-07 22:56:55
阅读次数:
212
//花括号位置; function A () { ; return //; retrun; // 这里会自动补分号 所以 返回 undefined 除了这里好久还没发现哪会出错 { } }; function B () { ; return { ...
分类:
编程语言 时间:
2014-08-07 18:15:40
阅读次数:
298
Displays a message box that can contain text, buttons, and symbols that inform and instruct the user.MessageBoxButtons.YesNoconst string message = "您想...
分类:
其他好文 时间:
2014-08-07 12:07:59
阅读次数:
270
关于 zend studio 中有些php 内置函数没有提示,或是有‘小黄色感叹号’**在用 Zend Studio 编写 PHP 项目时发现调用系统函数时调试正常, 但是在编写代码时却提示函数未定义"Call to undefined function ", 在左侧语法检测状态区域栏总是显示个小黄...
分类:
Web程序 时间:
2014-08-06 22:31:12
阅读次数:
326
if(!("a" in window)){ var a=1; }alert(a);这里的alert出来undefined这句话就相当于var a;if(!(“a” in window)){ a=1; }alert(a);if块不是作用域 因此var a(变量的声明)会先执行,if当中的条件...
分类:
Web程序 时间:
2014-08-06 18:46:01
阅读次数:
263
1.for()语句性能优于for(...in...)语句2.避免重复创建函数,避免使用闭包。推荐使用prototype追加方法3.判断一个js对象是否支持某个属性或方法时使用if(typeof(person.attr)!='undefined') ,考虑到当person.attr=null,0,fa...
分类:
Web程序 时间:
2014-08-06 17:39:21
阅读次数:
270