-c检查磁盘
-l指定卷标
-j日志(ext3和ext4都是默认带日志)
上面的命令不带...
分类:
系统相关 时间:
2015-04-09 10:40:24
阅读次数:
184
UIApplication、UIView、UIWindow、UIScreen、UIViewController、UINavigationController 介绍...
分类:
移动开发 时间:
2015-04-09 10:39:24
阅读次数:
194
JVM内存模型
JVM分别对新生代和旧生代采用的两种垃圾回收机制
如何判断对象是否可以被回收
gc的原因(Log释义)...
分类:
移动开发 时间:
2015-04-09 10:37:34
阅读次数:
122
spring提供访问数据库的有三种方式: HibernateDaoSupport,HibernateTemplate(推荐使用),jdbcTemplate
HibernateTemplate:org.springframework.orm.hibernate3.HibernateTemplate
HibernateDaoSupport:org.sprin...
分类:
数据库 时间:
2015-04-09 10:38:56
阅读次数:
267
用struts2+jsp做个网站,到了网站制作后期时,启动tomcat竟然无法启动,挂了。之前一直有用可是今天添加了一些东西就挂了,删除之后还是无法启动tomcat服务器。
下面是报错的代码:
org.apache.catalina.core.StandardContext filterStart
SEVERE: Exception starting filter struts
includ...
分类:
Web程序 时间:
2015-04-09 10:39:25
阅读次数:
133
一直都很想写关于多线程的东西,以来可以巩固巩固自己的知识,而来可以看看自己的掌握的水平,因为一直都觉得这方面挺有意思的好了。废话不多说,入正题。
java多线程,我们首先想多的是什么。进程,Thread,Runnable,start,run...
那我们就先从他们入手了。为什么会想到进程呢。以为一直都是多线程多进程的说。那他们有什么区别。
进程:进程是程序的运行和操作系统分配资源的最基本的独...
分类:
编程语言 时间:
2015-04-09 10:36:24
阅读次数:
181
0.以下在系统redhat6.0 x86_64上操作
1.试图运行程序,提示"libc.so.6: version `GLIBC_2.14' not found",原因是系统的glibc版本太低,软件编译时使用了较高版本的glibc引起的:
2.查看系统glibc支持的版本:
[ghui@StuOS bin]$ strings /lib64/libc.so.6 |grep GLIBC_
GL...
分类:
其他好文 时间:
2015-04-09 10:38:10
阅读次数:
134
题目:
Given a binary tree, flatten it to a linked list in-place.
For example,
Given
1
/ 2 5
/ \ 3 4 6
The flattened tree should look like:
...
分类:
其他好文 时间:
2015-04-09 10:38:07
阅读次数:
128
type
TArr = array of integer;function abc(a:integer):Tarr;
var
tempArr:TArr;
begin
setlength(tempArr,2);
tempArr[0] := a;
tempArr[1] := a + 10;
result:=tempArr;...
分类:
编程语言 时间:
2015-04-09 10:37:10
阅读次数:
154
problem:
Given two words word1 and word2, find the minimum number of steps required to convert word1 to word2. (each operation is counted
as 1 step.)
You have the following 3 operation...
分类:
其他好文 时间:
2015-04-09 10:36:31
阅读次数:
140
UIAlertView * alertView=[[UIAlertView
alloc]initWithTitle:nil
message:@"真的要退出?"
delegate:self
...
分类:
移动开发 时间:
2015-04-09 10:35:20
阅读次数:
235
试 制 品
时间限制:1000 ms | 内存限制:65535 KB
难度:4
描述
ZZ大学的Dr.Kong最近发现实验室的很多试制品都已经用完。由于项目经费有限,为了节省,Dr.Kong决定利用实验室现有的试制品来生成所缺的试制品。为此,Dr.Kong连续几天通宵达旦整理出一份研究资料并让研究生Bill去实验并统计能产生多少种所缺的试制品。
Bill从头到尾翻完所有的资料,发...
分类:
其他好文 时间:
2015-04-09 10:36:38
阅读次数:
146
Domination
Time Limit: 8 Seconds Memory Limit: 131072 KB Special Judge
Edward is the headmaster of Marjar University. He is enthusiastic about chess and often plays chess with hi...
分类:
其他好文 时间:
2015-04-09 10:37:06
阅读次数:
119
首先,sizeof是一个操作符,不是一个函数,但是当操作数为类型名称时需要用小括号将类型名称包围起来(操作数为变量时不需要),这一规则使得sizeof看起来想一个函数一样。其次如果sizeof的操作数为静态数组名时,得到的结果是整个数组所占的空间大小(以byte为单位),但是如果操作数动态数组时,得到只是一个指针变量所占的用的大小(我的机器上是4byte)。这是因为数组和指针实际上是两个不同的对象(...
分类:
其他好文 时间:
2015-04-09 10:35:27
阅读次数:
292
Android Studio 慢吗?No!!那是因为你还不懂她···...
分类:
移动开发 时间:
2015-04-09 10:36:17
阅读次数:
127