http://blog.csdn.net/maojudong/article/details/4178118zImage和uImage的区别 一、vmlinuzvmlinuz是可引导的、压缩的内核。“vm”代表“Virtual Memory”。Linux 支持虚拟内存,不像老的操作系统比如DOS有6...
分类:
其他好文 时间:
2014-12-08 13:50:26
阅读次数:
334
9.9 设计一种算法,打印八皇后在8*8棋盘上的各种摆法,其中每个皇后都不同行、不同列,也不在对角线上。这里的“对角线”指的是所有的对角线,不只是平分整个棋盘的那两条对角线。类似leetcode:N-Queens回溯法的实现代码:#include#include#includeusing names...
分类:
其他好文 时间:
2014-12-08 13:49:53
阅读次数:
117
抽象工厂模式factory:public interface Send { public void send();}public class SmsSendImpl implements Send { @Override public void send() { // TODO Auto-gene....
分类:
其他好文 时间:
2014-12-08 13:47:14
阅读次数:
160
SQL批处理是JDBC性能优化的重要武器,批处理的用法有三种。package lavasoft.jdbctest;import lavasoft.common.DBToolkit;import java.sql.Connection; import java.sql.PreparedStatemen...
分类:
数据库 时间:
2014-12-08 13:50:10
阅读次数:
235
本文地址:http://www.cnblogs.com/archimedes/p/java-study-note4.html,转载请注明源地址。1、对象初始化和回收对象初始化系统在生成对象时,会为对象分配内存空间,并自动调用构造方法对实例变量进行初始化对象回收对象不再使用时,系统会调用垃圾回收程序将...
分类:
编程语言 时间:
2014-12-08 13:48:10
阅读次数:
289
缓存主要是为了提高数据的读取速度。因为服务器和应用客户端之间存在着流量的瓶颈,所以读取大容量数据时,使用缓存来直接为客户端服务,可以减少客户端与服务器端的数据交互,从而大大提高程序的性能。本章从缓存所在的命名空间“System.Web.Caching”开始,详细介绍框架提供的缓存类和操作方法,主要涉...
我谢谢你,我谢谢你鼓励我,你相信我吧,我向你提出保证,我也向在座的各位同志提出我的保证,这就是我今天对祖国的誓言,如果不达到我的理想,我就不是祖国的好儿女,我就不配是中华人民共和国的公民!那就从今天十点钟开始,我要揭开我生命的最新一页,我要努力学习做出成绩,我是说话算数的,我提出我的保证,今天是星期...
分类:
其他好文 时间:
2014-12-08 13:48:49
阅读次数:
132
Given a binary tree, find the maximum path sum.The path may start and end at any node in the tree.For example:Given the below binary tree, 1 ...
分类:
其他好文 时间:
2014-12-08 13:46:49
阅读次数:
138
/*使用读写锁实现四个线程读写一段程序的实例,共创建了四个新的线程,其中两个线程用来读取数据,另外两个线程用来写入数据。在任意时刻,如果有一个线程在写数据,将阻塞所有其他线程的任何操作。*/#include #include #include #include #include pthread_rw...
分类:
其他好文 时间:
2014-12-08 13:48:57
阅读次数:
248
从构造方法开始,依次执行onAttachToWindow——>onMeasure——>onSizeChanged——>onLayout——>onMeasure——>onLayout——>onDraw——>onDetachedFromWindow如题View与ViewGroup里的方法调用过程总结如下...
分类:
移动开发 时间:
2014-12-08 13:48:18
阅读次数:
326
原文地址:http://blog.sina.com.cn/s/blog_60b35e8301019hk2.html1、inline元素(比如span,em等)的display属性设置为inline-block时,所有的浏览器都支持;2、block元素的display属性设置为inline-block...
分类:
其他好文 时间:
2014-12-08 13:46:45
阅读次数:
125
转载自http://my.oschina.net/u/1407116/blog/227084 http://my.oschina.net/u/1407116/blog/227087一 JDK的安装1、下载JDK从官网下载jdk8jdk-8u5-linux-x64.tar.gzhttp://www.....
分类:
系统相关 时间:
2014-12-08 13:47:36
阅读次数:
230
http://www.linuxidc.com/Linux/2009-09/21798.htmsudo rm -rf /var/lib/dpkg/locksudo rm -rf /var/cache/apt/archives/locksudo apt-get update最后运行:sudodpkg....
分类:
系统相关 时间:
2014-12-08 13:45:17
阅读次数:
140
class Product{public: virtual ~Product() {} virtual void DoSomething()=0;};class ProductA : public Product{public: ProductA() {} ~ProductA...
分类:
其他好文 时间:
2014-12-08 13:47:41
阅读次数:
116
1 mockito介绍和入门官方:https://github.com/mockito/mockito入门:5分钟了解Mockitohttp://liuzhijun.iteye.com/blog/1512780Mockito:一个强大的用于Java开发的模拟测试框架http://www.oschin...
分类:
编程语言 时间:
2014-12-08 13:46:14
阅读次数:
236