原出处:http://blog.csdn.net/yuebinghaoyuan/article/details/7244123java中把生成Class对象和实例对象弄混了,更何况生成Class对象和生成instance都有多种方式。所以只有弄清其中的原理,才可以深入理解。首先要生成Class对象,...
分类:
编程语言 时间:
2015-01-22 17:23:48
阅读次数:
129
1. SQL 基础进入查缺补漏阶段2. PL/SQL进入 practice 阶段3. Fundamental 1这部分还是比较重要architecture数据库启动与关闭步骤instance 与 parameter filecreate database 手动 和 dbca比较常用的数据字典cont...
分类:
其他好文 时间:
2015-01-22 12:42:27
阅读次数:
189
JavaScript 中没有父类, 子类的概念, 也没有class 和 instance 的概念, 全靠 prototype chain来实现继承. 当查找一个对象的属性时, JavaScript 会向上遍历 prototype chain, 直到找到对应的属性为止. 有几种方法, 可以使得 JavaScript 模拟出 class 和 instance 的概念....
分类:
编程语言 时间:
2015-01-22 00:17:44
阅读次数:
168
[__NSCFNumber isEqualToString:]: unrecognized selector sent to instance 0x7a97d4c0'报错...
分类:
其他好文 时间:
2015-01-21 22:36:47
阅读次数:
176
首先查看源码:Map经常运用到的源码
/**
* Returns a {@code Set} containing all of the mappings in this {@code Map}. Each mapping is
* an instance of {@link Map.Entry}. As the {@code Set} is backed by this...
分类:
编程语言 时间:
2015-01-21 18:16:46
阅读次数:
268
1 oracle数据库主要有数据文件database和数据库实例instance组成。用户通过用户进程链接到server process。在数据库启动的时候,需要依赖于参数文件parameter file,如果我们的数据库是归档模式的话,oracle数据库会把 redo log files 写入到 ...
分类:
数据库 时间:
2015-01-20 23:43:18
阅读次数:
312
原文:http://blog.csdn.net/sunny2038/article/details/6926079最近在看Java,在编译写书上一个例子时,由于书上的代码只有一部分,于是就自己补了一个内部类。结果编译时出现:No enclosing instance of type E is acc...
分类:
数据库 时间:
2015-01-20 15:32:23
阅读次数:
173
move table:
SQL> startup
ORACLE instance started.
Total System Global Area 281018368 bytes
Fixed Size 2083336 bytes
Variable Size 88081912 bytes
Database Buffers...
分类:
数据库 时间:
2015-01-20 08:59:38
阅读次数:
438
I see a lot of questions on shared file systems that can be used when people move from single instance to Oracle RAC database and Grid Infrastructure....
分类:
数据库 时间:
2015-01-19 22:31:09
阅读次数:
290
个人需求,仿着CI的表单验证写了一个自己的验证类 1.定义验证类 CI =& get_instance(); //读取验证类配置文件 TODO } public function set_rules($field, $rules = '') { //如果field是数组,我们遍历它并递归调用这些验证...
分类:
其他好文 时间:
2015-01-19 20:46:48
阅读次数:
394