用于大型程序的工具--异常处理[续3]九、auto_ptr类[接上]5、auto_ptr对象的复制和赋值是破坏性操作 auto_ptr和内置指针对待复制和赋值有非常关键的区别。当复制auto_ptr对象或者将它的值赋给其他auto_ptr对象的时候,将基础对象的所有权从原来的auto_ptr对象转给副本,原来的auto_ptr对象重置为未绑定状态。 auto_ptr strPtr1(new ...
分类:
编程语言 时间:
2014-06-05 08:34:36
阅读次数:
366
用于大型程序的工具--异常处理[续2]八、自动资源释放 考虑下面函数:void f()
{
vector v;
string s;
while (cin >> s)
{
v.push_back(s);
}
string *p = new string[v.size()];
//...
delete p;
}
在正...
分类:
编程语言 时间:
2014-06-05 06:07:27
阅读次数:
393
1 innodb 自增列出现重复值的问题 先从问题入手,重现下这个buguse test;drop
table t1;create table t1(id int auto_increment, a int, primary key (id))
engine=innodb;insert into t...
分类:
数据库 时间:
2014-06-03 13:24:55
阅读次数:
503
使用echo或者printf时,可以添加输出文本的颜色设置echo -e "Maximum
\e[1;31m" $max_threads "\e[0mthreads allowed!" >>
$term_dir/summary或者printf("\033[;34mfile\033[0m")31开始代...
分类:
系统相关 时间:
2014-06-03 09:11:52
阅读次数:
306
1.RuntimeExceptionpublic class RuntimeException
{ public static void main(String[] args) { // TODO Auto-generated method stub
String ...
分类:
编程语言 时间:
2014-06-03 04:47:09
阅读次数:
352
1.html 部分 2.css 部分.spinner { margin: 100px auto;
width: 50px; height: 60px; text-align: center; font-size: 10px;} .spinner >
div { back...
分类:
Web程序 时间:
2014-05-31 11:52:06
阅读次数:
555
1. 实验线路连接图使用 Cisco Packet Tracer5.3
构建拓扑结构图。先配置rip协议使主机1、主机0、http服务器能够互通RARouter>enableRouter#configure
terminalRouter(config)#interface FastEthernet0...
分类:
其他好文 时间:
2014-05-29 13:51:19
阅读次数:
297
Mysql中自增字段(AUTO_INCREMENT)的一些常识在系统开发过程中,我们经常要用到唯一编号。使用过mysql的人都应该知道,mysql有一个定义列为自增的属性:AUTO_INCREMENT。指定了AUTO_INCREMENT的列必须要建索引,不然会报错,索引可以为主键索引,当然也可以为非...
分类:
数据库 时间:
2014-05-29 12:59:30
阅读次数:
573
一直,我是认为定一个width,然后写一句margin:0
auto,就可以,但是有时也会不管用。 例如当我要定一个宽度为700的div,用相对定位定在中间。任你怎么拉伸都是居中。 看实例子 无标题文档 R6
BRANCH...
分类:
Web程序 时间:
2014-05-29 11:37:58
阅读次数:
226
The tricky thing is how to decide the key for a
hashmap. Especially when you intend to use self-defined objects as key.The
simple rule is you have to ...
分类:
编程语言 时间:
2014-05-29 09:08:40
阅读次数:
362