双向链表(插入,删除,追加,正反向遍历,查找。。。)
#include
#include
using namespace std;
class List
{
public:
List(void) : m_head(NULL), m_tail(NULL), m_size(0){}
~List(void)
{
for(Node* node = m_head; m_head; m_head = node)
{
node = m_he...
分类:
其他好文 时间:
2014-09-14 19:21:27
阅读次数:
230
inverse设立不当会导致性能低下,其实是说inverse设立不当,会产生多余重复的SQL语句甚至致使JDBC exception的throw。这是我们在建立实体类关系时必须需要关注的地方。一般来说,inverse=true是推荐使用,双向关联中双方都设置 inverse=false的话,必会导致...
分类:
系统相关 时间:
2014-09-13 14:31:45
阅读次数:
314
当调试SilverLight项目时,如果出现如下错误:当调试页面时出现如下错误:解决办法为:打开工程属性,在Startup object:处选择相应的启动应用程序。
分类:
移动开发 时间:
2014-09-13 13:18:45
阅读次数:
291
The following classes could not be instantiated:-android.support.v4.widget.DrawerLayout (Open Class, Show Exception) Tip: Use View.isInEditMode() in y...
分类:
移动开发 时间:
2014-09-13 13:13:15
阅读次数:
528
oop06异常处理 2014-9-2 8:36:33 NotePad++ By jiancaigege摘要:1、异常处理2、类中常用函数异常处理语法格式:1 try{2 //捕获异常3 }catch(Exception $e){4 //处理异常5 } 注:Exception $e表示$e是一个Exc...
分类:
Web程序 时间:
2014-09-13 00:44:04
阅读次数:
252
http://libmemcached.org/libMemcached.html报错:Exception Value:unknown behavior names: remove_failedException Location:/usr/local/lib/python2.7/site-pack...
分类:
其他好文 时间:
2014-09-12 18:46:23
阅读次数:
213
iOS的Safari在无痕模式下,sessionStorage操作产生异常,报错QUOTA_EXCEEDED_ERR: DOM Exception 22。html5 localStorage error with Safari: “QUOTA_EXCEEDED_ERR: DOM Exception ...
分类:
其他好文 时间:
2014-09-12 14:41:53
阅读次数:
286
网站不能访问 查看apache日志 PHP Fatal error: Uncaught exception 'PDOException' with message 'could notfind driver'(PHP 5.3.29)网站php代码是用pdo模块去访问mysql数据库#查看php中pd...
分类:
系统相关 时间:
2014-09-12 13:10:53
阅读次数:
298
转载自 :http://greemranqq.iteye.com/blog/1705867转载自:http://www.cnblogs.com/xwdreamer/archive/2011/11/21/2296930.htmlJava代码 Exceptioninthread"ContainerBac...
分类:
编程语言 时间:
2014-09-12 10:04:43
阅读次数:
213