1)Linux启动大致过程?加载BIOS–>读取MBR–>BootLoader–>加载内核–>用户层init依据inittab文件来设定系统运行的等级(一般3或者5,3是多用户命令行,5是界面)–>init进程执行rc.syninit–>启动内核模块–>执行不同级别运行的脚本程序–>执行/etc/rc...
分类:
系统相关 时间:
2016-02-13 23:18:25
阅读次数:
629
一.Oracle安装前的准备检查一下包,必须全部安装:binutils-2.20.51.0.2-5.43.el6.x86_64compat-libstdc++-296-2.96-144.el6.i686compat-libstdc++-33-3.2.3-69.el6.x86_64elfutils-libelf-0.161-3.el6.x86_64elfutils-libelf-devel-0.161-3.el6.x86_64gcc-4.4.7-16.el6.x86_64..
分类:
数据库 时间:
2016-02-13 23:17:24
阅读次数:
484
说明:最近做cms想本地修改模板,然后把最新的模板内容存到数据中,所以想到Runnable写个定时任务;思路:每隔一分钟查看模板是否有改动,如果有改变执行保存到数据库中;定时任务核心代码:packagecom.aih.common.utils;importjava.util.concurrent.Executors;importjava.util..
分类:
其他好文 时间:
2016-02-13 23:15:55
阅读次数:
434
classA
{
public:
A(A&&a):m_a(a.m_a)
{
std::cout<<"movecontruct:"<<m_a<<endl;
}
A(constA&a):m_a(a.m_a)
{
std::cout<<"copycontruct:"<<m_a<<endl;
}
A()
{
std::cout<<"contruct:"<<m_a<<endl;
}
A(i..
分类:
其他好文 时间:
2016-02-13 23:16:56
阅读次数:
351
偏函数,也叫部分应用函数,就是调用的时候,只传入函数的部分参数。先举个例子就很容易明白了。objectPartialAppliedFunction{
defmain(args:Array[String]):Unit={
valpart_sum=sum(1,_:Int,3)
println(part_sum(2))
}
defsum(a:Int,b:Int,c:Int)=a+b+c
}我们定义了一个函数..
分类:
移动开发 时间:
2016-02-13 23:17:03
阅读次数:
575
break:(1)永久结束循环,下一条执行的是正常结束循环时的下一条语句。(2)对于while语句,使用break,循环就会永久结束。(3)对于for语句,使用break,便终止不再执行for语句,开始执行for语句之后的语句。continue:(1)结束当前循环,结束后开始再判断是否满足循环条件。(2)对于..
分类:
编程语言 时间:
2016-02-13 23:16:52
阅读次数:
365
echo"Itwillinstalllnmp."
sleep1
##checklastcommandisOKornot.
check_ok(){
if[$?!=0]
then
echo"Error,Checktheerrorlog."
exit1
fi
}
##getthearchiveofthesystem,i686orx86_64.
ar=`arch`
##closeseliux
sed-i‘s/SELINUX=enforcing/SELINUX=disabled/‘/etc/selinux/confi..
分类:
其他好文 时间:
2016-02-13 23:15:31
阅读次数:
401
首先你要有eclipse1、下载tomcat对eclipse插件,下载地址:http://www.eclipsetotale.com/tomcatPlugin.html。2、解压,得到如图复制到eclipse目录下的plugs目录下。3、重启eclipse,看到!不过还没完。4、选择eclipse--》Windows--》preferences--》tomcat配置:5、配置完成后..
分类:
系统相关 时间:
2016-02-13 23:17:06
阅读次数:
457
searchEditView.setFocusable(true); searchEditView.setFocusableInTouchMode(true); searchEditView.requestFocus(); Timer timer = new Timer(); timer.sched
分类:
移动开发 时间:
2016-02-13 23:13:16
阅读次数:
385
求数组nums[i,j]的和 思路:另开一sum数组,sum[i]为nums[0,i]的和,所以nums[i,j] = sum[j] - sum[i-1] 1 class NumArray { 2 public: 3 vector<int> sum; 4 NumArray(vector<int> &
分类:
其他好文 时间:
2016-02-13 23:15:03
阅读次数:
357
【题面】 求一颗树上距离为K的点对是否存在 输入数据 n,m 接下来n-1条边a,b,c描述a到b有一条长度为c的路径 接下来m行每行询问一个K 输出数据 对于每个K每行输出一个答案,存在输出“AYE”,否则输出”NAY”(不包含引号) 数据范围 对于30%的数据n<=100 对于60%的数据n<=
分类:
其他好文 时间:
2016-02-13 23:13:30
阅读次数:
440
Given n pairs of parentheses, write a function to generate all combinations of well-formed parentheses. For example, given n = 3, a solution set is: "
分类:
其他好文 时间:
2016-02-13 23:13:58
阅读次数:
458
1.在这个网站下载主题:eclipsecolorthemes.org 2.选择一个自己喜欢的主题的EPF文件下载。 3.然后在File—>import中找到General—>Preferences,选择之前下载的epf文件—>Finish
分类:
系统相关 时间:
2016-02-13 23:13:54
阅读次数:
703
Atitit.业务系统的新特性 开发平台 新特性的来源总结 1.1. 语言新特性(java c# php js python lisp c++ oc swift ruby go dart1 1.2. 流行lib、frmawork 新特性 jdk clr framework 新特性 (jq Servl
分类:
其他好文 时间:
2016-02-13 23:12:54
阅读次数:
488
Atitit.mysql 5.0 5.5 5.6 5.7 新特性 新功能 1. MySQL 5.6 5 大新特性1 1.1. 优化器的改进1 1.2. InnoDB 改进1 1.3. 使用 memcached API 直接访问 NoSQL2 1.4. 更好的复制2 1.5. Performance
分类:
数据库 时间:
2016-02-13 23:11:37
阅读次数:
381
属性: public function __get($name) // 这里$name是属性名 { $getter = 'get' . $name; // getter函数的函数名 if (method_exists($this, $getter)) { return $this->$getter(
分类:
其他好文 时间:
2016-02-13 23:11:55
阅读次数:
362
debian的包太老了,添加新源 echo "deb http://files.freeswitch.org/repo/deb/debian/ jessie main" > /etc/apt/sources.list.d/freeswitch.list wget -O - http://files.
分类:
其他好文 时间:
2016-02-13 23:11:40
阅读次数:
471