上一页 1 ··· 4 5 6 7 8 9 10 11 下一页
摘要: char cString[10]="hello world" 是初始化,合法。 char cString[10]; cString="hello world" 是赋值,这样赋值非法。原因在于声明了cString数组后,cString其实是一个char型的常量指针,而cString="hello w... 阅读全文
posted @ 2012-05-15 13:21 children 阅读(6167) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2012-05-15 10:56 children 阅读(190) 评论(0) 推荐(0) 编辑
摘要: 如果希望函数的返回对象可以作为左值(能够出现在赋值操作符左边的值或表达式),那么函数必须返回引用类型。 但当某个类的成员函数要返回类类型的成员变量,就不能返回引用类型。 通常,要返回类类型的成员变量时,一般需要返回常量类型。 阅读全文
posted @ 2012-05-15 10:51 children 阅读(349) 评论(0) 推荐(0) 编辑
摘要: 将二元操作符重载为成员函数时,两个参数(即操作数)就不再是对等,第一个参数成为了调用对象,第二个参数成为真正的参数。比如下面的语句合法: Money baseAmount(100,60),fullAmount; fullAmount=baseAmount+25; 这是因为Money类包含了一... 阅读全文
posted @ 2012-05-15 10:42 children 阅读(3388) 评论(0) 推荐(0) 编辑
摘要: 假设有一对象:var obj={ name:'ldg', age:25, var:'test'}如果直接用obj.var去读属性var 的话,在ie会不通过,因为var是关键字。可以改用obj["var"]或者obj[2]的方式读取 ,或者用反射的方式读取:for(var p in obj){ alert(obj[p]);} 阅读全文
posted @ 2012-05-08 11:09 children 阅读(161) 评论(0) 推荐(0) 编辑
摘要: 正常情况下,jQuery 的 $.get/$.ajax 方法是不能跨域访问别的网站资源的,解决方法如下: 一些有用的链接: http://blog.csdn.net/jallin2001/article/details/5663748 http://www.jb51.net/article/212... 阅读全文
posted @ 2012-05-04 16:58 children 阅读(165) 评论(0) 推荐(0) 编辑
摘要: http://blog.pfan.cn/xman/38666.html 阅读全文
posted @ 2012-04-17 11:49 children 阅读(150) 评论(0) 推荐(0) 编辑
摘要: http://www.cnitblog.com/tarius.wu/articles/2277.html http://www.starming.com/index.php?action=plugin&v=wave&tpl=union&ac=viewgrouppost&gid=33263&tid=... 阅读全文
posted @ 2012-04-16 21:58 children 阅读(1023) 评论(0) 推荐(0) 编辑
摘要: 优先级 运算符 名称或含义 使用形式 结合方向 说明 1 [] 数组下标 数组名[常量表达式] 左到右 () 圆括号 (表达... 阅读全文
posted @ 2012-04-05 15:22 children 阅读(245) 评论(0) 推荐(0) 编辑
摘要: MyISAM InnoDB 区别 :http://www.php100.com/html/webkaifa/database/Mysql/2011/0326/7789.html 阅读全文
posted @ 2012-03-20 18:45 children 阅读(184) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 下一页