div#pages
{float:right;padding-right:8px;white-space: nowrap;}div#pages
ul{margin:0;padding:0;}div#pages a:link,div#pages a:visited,div#pages
a:active...
分类:
其他好文 时间:
2014-05-29 04:30:35
阅读次数:
272
在多任务操作系统中,每个进程都运行在属于自己的内存沙盘中。这个沙盘就是虚拟地址空间(Virtual Address
Space),在32位模式下它是一个4GB的内存地址块。在Linux系统中,
内核进程和用户进程所占的虚拟内存比例是1:3,而Windows系统为2:2(通过设置Large-Add.....
分类:
系统相关 时间:
2014-05-29 00:10:54
阅读次数:
416
回文数是指这样的数字:正读和倒读都是一样的。如:595,2332都是回文数,234不是回文数。注意:负数不是回文数Determine whether an
integer is a palindrome. Do this without extra space.Some hints:Could ne...
分类:
其他好文 时间:
2014-05-27 23:44:17
阅读次数:
459
安装包下载:http://www.nodejs.org/download/Windows
操作系统安装方法:第一步:下载安装包:第二步:运行node-v0.10.28-x86.msi,选择要安装的地址。第三步:安装完后,运行cmd
,输入node,如图:说明安装成功。这样你就进入nodejs 世界。...
分类:
Web程序 时间:
2014-05-27 16:55:45
阅读次数:
364
Determine whether an integer is a palindrome. Do
this without extra space.Some hints:Could negative integers be palindromes? (ie,
-1)If you are thinki...
分类:
其他好文 时间:
2014-05-26 18:07:52
阅读次数:
217
We are the World词曲:Michael Jackson & Lionel
RichThere comes a time when we heed a certain call (Lionel Richie 莱昂纳尔.里奇)When
the world must come togethe...
分类:
其他好文 时间:
2014-05-26 17:07:17
阅读次数:
266
前提条件是已经安装了g++要是没有安装,就yum install
g++1,编写Hello.cpp1>vim2>#include int main(){ printf("Hello,the world!");
return 0;}3>:w hello.cpp2,退出vim !q3,编译#g++ .....
分类:
编程语言 时间:
2014-05-25 22:19:17
阅读次数:
468
1. 变量赋值时 = 两边不能有空格.2. if比较时 = 两遍有空格.3. [ 的左右两边 和 ]
的左边有空格, 1 #!/bin/sh 2 # 字符串比较 3 aa= 4 bb="hello" 5 cc="world" 6 7 #
1.注意判断中的字符串变量用双引号括起来(不括起来在某些情况....
分类:
其他好文 时间:
2014-05-25 22:01:11
阅读次数:
298
package chapter1;public class Demo1 { public
static void main(String[] args) { System.out.println("Hello World!"); /*...
分类:
编程语言 时间:
2014-05-25 13:56:17
阅读次数:
229
常用的快捷键代码补全Ctrl + space删除行Command + D注释Command +
/导入包Command + shift + O格式化代码Command + shift + F运行Ctrl + Alt + RIncremental
SearchCommand + J 在编辑器中实现快....
分类:
其他好文 时间:
2014-05-25 12:17:37
阅读次数:
287