上一页 1 ··· 6 7 8 9 10
摘要: 作者:Ian Adam & David Stien, SAIC Ltd 日期:19-Dec-2003 出处:http://www.dbanotes.net翻译:Fenng 摘要 ORACLE Database是广为人知的Unix硬件平台上的领先的数据库系统。ORACLE 用户和管理员因此熟悉 Uni 阅读全文
posted @ 2016-12-01 17:03 ZeroTiny 阅读(290) 评论(0) 推荐(0) 编辑
摘要: 今天对分区表的索引(包括本地分区索引、全局分区索引、非分区索引)进行试验测试.================================================================================================= ... 阅读全文
posted @ 2016-01-21 17:57 ZeroTiny 阅读(327) 评论(0) 推荐(0) 编辑
摘要: 在DBI-1.634使用手册里有一个selectrow_array函数,该函数具体说明如下: This utility method combines "prepare", "execute" and "fetchrow_array" into a single call. If called... 阅读全文
posted @ 2015-08-17 16:43 ZeroTiny 阅读(726) 评论(0) 推荐(0) 编辑
摘要: 为什么使用引用?在perl4中,hash表中的value字段只能是scalar,而不能是list,这对于有些情况是很不方便的,比如有下面的数据:Chicago, USAFrankfurt, GermanyBerlin, GermanyWashington, USAHelsinki, FinlandN... 阅读全文
posted @ 2015-08-11 15:07 ZeroTiny 阅读(454) 评论(0) 推荐(0) 编辑
摘要: 对于一般的对象,如:int a = 10;int b = 20;它们之间的赋值、复制过程是很简单的。但是对于类对象来说,其内部存在各种类型成员变量,在拷贝过程中会出现问题。如下: 1 #include<iostream> 2 #include<cstring> 3 using namespace std; 4 class String { 5 public: 6 String (const char* psz=NULL) : m_psz(strcpy(new char[strlen(psz?psz:"")+1]),psz?psz:"&quo 阅读全文
posted @ 2013-01-08 22:08 ZeroTiny 阅读(2023) 评论(5) 推荐(3) 编辑
摘要: 首先,何为钻石继承,顾名思义,在类的继承过程中,继承结构是一个类似菱形(钻石)的结构就属于钻石继承,如下: 这是一个最简单的钻石继承。实际上,在复杂的继承表中,只要子类按不同的继承路径回溯到基类有菱形结构,均属钻石继承。下面先看一个例子,钻石继承在C++程序设计中带来的问题。 1 //diamond.cpp 2 #include<iostream> 3 using namespace std; 4 class A{ 5 public: 6 A (int x) : m_x(x) {} 7 int m_x; 8 }; 9 class B : public A {... 阅读全文
posted @ 2013-01-03 21:39 ZeroTiny 阅读(2825) 评论(2) 推荐(5) 编辑
上一页 1 ··· 6 7 8 9 10