14.4.1 定义类模板下面以第10章的Stack类为基础来建立模板。原来的类声明如下:typedef unsigned long Item;class Stack{private: enum {MAX = 10}; // constant specific to class Item items[ ...
分类:
编程语言 时间:
2016-07-14 10:09:06
阅读次数:
239
感叹:神一般的eclipse! 首先, 我这么写 extern "C" void func(){}; 代码爆红:(error: expected identifier or ‘(’ before string constant ) what the fuck!! 百度后是说c编译器不支持这种写法, ...
分类:
移动开发 时间:
2016-07-14 01:14:30
阅读次数:
235
// ffmpegDemo1.cpp : 定义控制台应用程序的入口点。// #include "stdafx.h"#include <string>#include <windows.h>#include <processthreadsapi.h>#define __STDC_CONSTANT_MA ...
分类:
其他好文 时间:
2016-07-13 20:10:43
阅读次数:
243
PLS-00201:identifier‘SYS.DBMS_SHARED_POOL‘mustbedeclared1whatisDBMS_SHARED_POOLMos解释TheDBMSSHAREDPOOLpackageprovidesaccesstothesharedpool,whichisthesharedmemoryareawherecursorsandPL/SQLobjectsarestored.DBMSSHAREDPOOLenablesyoutodisplaythesizesofobjectsint..
分类:
其他好文 时间:
2016-07-11 19:34:36
阅读次数:
272
JDBC2.0提供了javax.sql.DataSource接口,它负责建立与数据库的连接,在应用程序访问数据库时不需要编写连接数据库的代码,可以直接从数据源获得数据库连接。在DataSource中事先建立了多个数据库连接,这些数据库连接保存在连接池(Connect Pool)中。Java程序访问数 ...
分类:
其他好文 时间:
2016-07-11 19:04:19
阅读次数:
138
DBCP是一个依赖Jakarta commons-pool对象池机制的数据库连接池.DBCP可以直接的在应用程序用使用 可以设置最大和最小连接,连接等待时间等,基本功能都有,此连接池的持续运行的稳定性还是可以,不过速度稍慢,在大并发量的压力下稳定性有所下降,此外不提供连接池监控 co.uk/~sli ...
分类:
数据库 时间:
2016-07-11 14:08:36
阅读次数:
235
10 Common Problems Causing Group Policy To Not Apply Group Policy is a solid tool and is very stable. Microsoft has made constant improvements to it s ...
分类:
移动开发 时间:
2016-07-11 13:53:05
阅读次数:
272
http://no001.blog.51cto.com/1142339/389840/ mutalbe的中文意思是“可变的,易变的”,跟constant(既C++中的const)是反义词。 在C++中,mutable也是为了突破const的限制而设置的。被mutable修饰的变量,将永远处于可变的状 ...
分类:
其他好文 时间:
2016-07-10 09:47:45
阅读次数:
124
一些开源组织提供了数据源的独立实现: DBCP数据库连接池 C3P0数据库连接池 Apache Tomcat内置的连接池 DBCP连接池 apache提供的连接池实现,需要导入common-dbcp.jar commons-pool.jar 在项目目录下新建dacp.properties C3P0连 ...
分类:
数据库 时间:
2016-07-09 11:53:58
阅读次数:
203
参考资料: [AngularJS系列(4)] 那伤不起的provider们啊~ (Provider, Value, Constant, Service, Factory, Decorator):http://hellobug.github.io/blog/angularjs-providers/ S ...
分类:
Web程序 时间:
2016-07-08 18:06:30
阅读次数:
202