摘要: http://www.douban.com/group/topic/21339903/ 阅读全文
posted @ 2011-08-11 17:05 Dianthus 阅读(82) 评论(0) 推荐(0) 编辑
摘要: http://www.oschina.net/p/aqua+data+studio 阅读全文
posted @ 2011-07-20 11:09 Dianthus 阅读(234) 评论(1) 推荐(0) 编辑
摘要: http://www.cnblogs.com/QQParadise/articles/1943389.html 阅读全文
posted @ 2011-07-20 09:00 Dianthus 阅读(93) 评论(0) 推荐(0) 编辑
摘要: http://www.oschina.net/p/mongodb 阅读全文
posted @ 2011-07-19 08:44 Dianthus 阅读(236) 评论(1) 推荐(0) 编辑
摘要: http://blog.csdn.net/ocean20/article/details/6313591 阅读全文
posted @ 2011-07-12 15:21 Dianthus 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 1、printf("\040");2、printf("%c", 32); 阅读全文
posted @ 2011-06-16 15:50 Dianthus 阅读(2145) 评论(0) 推荐(0) 编辑
摘要: 关键词:构造函数,浅拷贝,深拷贝,堆栈(stack),堆heap,赋值运算符摘要:在面向对象程序设计中,对象间的相互拷贝和赋值是经常进行的操作。如果对象在申明的同时马上进行的初始化操作,则称之为拷贝运算。例如:class1 A("af"); class1B=A;此时其实际调用的是B(A)这样的浅拷贝操作。如果对象在申明之后,在进行的赋值运算,我们称之为赋值运算。例如:class1 A("af"); class1 B;B=A;此时实际调用的类的缺省赋值函数B.operator=(A);不管是浅拷贝还是赋值运算,其都有缺省的定义。也就是说,即使我们不over 阅读全文
posted @ 2011-06-16 15:35 Dianthus 阅读(1204) 评论(0) 推荐(0) 编辑
摘要: http://wenku.baidu.com/view/0bbca7661ed9ad51f01df28e.htmlhttp://zhidao.baidu.com/question/119218758.htmlhttp://hi.baidu.com/%B5%FB%C6%C6%D1%E6%B3%BA/blog/item/b0db393dd1507ce93d6d9795.html 阅读全文
posted @ 2011-06-14 17:09 Dianthus 阅读(132) 评论(0) 推荐(0) 编辑
摘要: 1、Oracle数据库存在5种完整性约束:Check NOT NULL Unique Primary Foreign key2、数据库的四种特性:ACID,原子性(Atomicity)、一致性(Consistency)、隔离性(Isolation,又称独立性)、持久性(Durability)。 阅读全文
posted @ 2011-05-30 21:25 Dianthus 阅读(112) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/yangxin114/archive/2008/09/25/2975849.aspx 阅读全文
posted @ 2011-05-30 20:49 Dianthus 阅读(100) 评论(0) 推荐(0) 编辑