一道面试题,以下程序的输出是?public class StaticDispatch { static abstract class Human{ } static class Man extends Human{ } static class Woman extends Human{ } publ...
分类:
编程语言 时间:
2014-07-16 21:48:37
阅读次数:
229
Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases.
For example,
"A man, a plan, a canal: Panama" is a palindrome.
"race a car" is not a ...
分类:
其他好文 时间:
2014-07-12 20:10:54
阅读次数:
165
LINUX环境下多线程编程肯定会遇到需要条件变量的情况,此时必然要使用pthread_cond_wait()函数。但这个函数的执行过程比较难于理解。
pthread_cond_wait()的工作流程如下(以MAN中的EXAMPLE为例):
Consider two shared variables x and y, protected by the mutex mut,...
分类:
其他好文 时间:
2014-07-10 19:50:36
阅读次数:
347
终极解决方案:赋予svn文件root权限1. 查找svn文件:1 $ whereis svn2 svn: /usr/bin/svn /usr/bin/X11/svn /usr/share/man/man1/svn.1.gz3 $ 2. 查看当前权限:$ ls -l /usr/bin/svn-rwxr...
分类:
其他好文 时间:
2014-07-09 17:05:39
阅读次数:
196
当我们需要 bash 执行命令后的数据进行加工时就可以用到了界定符号: |注:管道命令接仅会接收正确数据选取命令: cut 切割 -d 以什么分割成域 -f 获取指定的域和不包含分隔符的行 num或者 num,num -c 获取某列的值num / num- eg: man cut | cut ...
分类:
其他好文 时间:
2014-07-09 14:31:05
阅读次数:
202
一道面试题,下面程序的输出是?
public class StaticDispatch {
static abstract class Human{
}
static class Man extends Human{
}
static class Woman extends Human{
}
public void sayHello(Human guy){
System.out...
分类:
编程语言 时间:
2014-07-09 12:06:54
阅读次数:
213
1. find命令
linux的find命令用来查找文件,功能很强大,
可以通过时间, 用户组, 文件名, 文件类型, 权限,大小等来查找相应文件。
2. find的用法
通过find --help或者 man find查看介绍。...
分类:
系统相关 时间:
2014-07-08 21:09:35
阅读次数:
290
1、错误描述
java.sql.SQLException:Column count doesn't match value count at row 1
2、错误原因
在插入数据时,插入的字段个数跟数据库表字段个数不一致
insert into student(sno,sname,sage,ssex) values(1,'张三丰','man');
3、解决办...
分类:
数据库 时间:
2014-07-08 20:14:16
阅读次数:
286
判断是否欧拉回路。
很蛋疼的一道题,加上DFS判所有点是否连通就无限WA。(并查集也可判)
直接定理就AC了。都不知道所有点是不是在一个 连通块里面。
然后他们说:Your master is a particularly absent-minded lout and continually leaves doors open throughout a particular floo...
分类:
其他好文 时间:
2014-07-08 20:05:55
阅读次数:
212
man bash: Special Parameters The shell treats several parameters specially. These parameters may only be referenced; assignment to them is not allowed...
分类:
其他好文 时间:
2014-07-08 11:40:44
阅读次数:
313