使用NTFS分区,可以更好的管理磁盘及提高系统的安全性;硬盘为NTFS格式时,碎片整理也快很多。在安装的过程中可以选择使用NTFS还是FAT分区。如果在安装过程中选择了FAT,可以用下面的办法来把它转换成NTFS。1.
依次选择“开始→运行”命令,在弹出对话框中输入“cmd”命令(或点“开始→程序→...
分类:
其他好文 时间:
2014-04-28 00:44:49
阅读次数:
579
BMega Man’s MissionsInputStandard
InputOutputStandard OutputMega Man is off to save the world again. His objective
is to kill the Robots created by Dr...
分类:
其他好文 时间:
2014-04-28 00:38:46
阅读次数:
483
Centos6.5 X86 64 2014-04-27# yum -y install
corosync pacemaker # yum -y install crmsh-1.2.6-4.el6.x86_64.rpm
pssh-2.3.1-2.el6.x86_64.rpm # u...
分类:
其他好文 时间:
2014-04-28 00:36:48
阅读次数:
717
对于类而言,为了让使用者获取它自身的一个实例,最常见的方法就是提供一个公有的构造器。但是有一种方法,他就是静态工厂方法(static factory
method),它只返回类的实例的静态方法。比如说我们所有的基本类型的封装类中的valueOf()方法1 public static Boolean ...
分类:
其他好文 时间:
2014-04-28 00:34:52
阅读次数:
452
description:given two sorted singly list, merge
them into one using constant additional spacealgorithm:we will reference the two
linked list as list1 ...
分类:
其他好文 时间:
2014-04-28 00:32:52
阅读次数:
711
一、编写JNI模块当安装好NDK编译环境后,会在它的目录下找到sample目录,它里面有一些例子,可以参考这些例子来写我们自已的模块。1、在/home/android/文件夹下,新建“ledjni”文件夹。2、/ledjni/jni/目录下,新建“led-jni.c”led-jni.c文件[html...
分类:
其他好文 时间:
2014-04-28 00:30:59
阅读次数:
679
C++ Primer 5E 有符号和无符号
无符号类型和有符号类型混合运算时,有符号数会被提升至无符号类型,如果其值为负责会产生错误。 int main(){ unsigned int u = 10;
int i = -42; std::cout using Vec = vector>;auto和d...
分类:
编程语言 时间:
2014-04-28 00:19:15
阅读次数:
575
今天发现很多国外的网站和框架设计都用到了before和after,之前使用的比较少,今天试了下觉得还是很有意思的~说明1.
:before 和
:after将在内容元素的前后插入额外的元素;:before将会在内容之前“添加”一个元素而:after将会在内容后“添加”一个元素。在它们之中添加内容我们...
分类:
Web程序 时间:
2014-04-28 00:17:14
阅读次数:
546
//: ORDER.CPP -- Order of constructor calls // with
inheritance#include #define inherit(derived, base) \class derived : public base
{ \public: \ deri....
分类:
其他好文 时间:
2014-04-28 00:09:24
阅读次数:
444
交互式shell和非交互式shell、登录shell和非登录shell的区别。首先,这是两个不同的维度来划分的,一个是是否交互式,另一个是是否登录。交互式shell和非交互式shell(interactive
shell and non-interactive shell)交互式模式就是在终端上执行...
分类:
其他好文 时间:
2014-04-28 00:05:33
阅读次数:
210362