码迷,mamicode.com
首页 >  
搜索关键字:move datafile    ( 6722个结果
swap的几点理解
一、什么是swap space(交换分区)?在Linux系统中,当物理内存满了才使用Swap空间。当系统需要更多的内存资源,并且物理内存已经满了,此时,内存中那些不活跃的pages被移动(move)到swap空间。虽然,交换分区能使设备使用更少的物理内存,但这并不表示可以替换物理内存。交换分区处于硬...
分类:其他好文   时间:2014-11-17 19:15:26    阅读次数:250
Smail语法(2)指令解析
【重点】归总了一些简单的Smail指令。1.If语句 if-nez v0,:cond_0 如果结果不为0,就跳转到cond_0标号处 if-eqz v0,:cond_1 如果结果为0,就跳转到cond_1标号处 2.数据操作指令 move v0,v1 将v...
分类:其他好文   时间:2014-11-17 19:12:04    阅读次数:295
HTML iframe 用法小总结
Iframe用法,下面是一个常规的列子 <iframe?border=2?frameborder=0?width=500?height=500?marginheight=0?marginwidth=0?scrolling=no?src="move-ad.html"> </iframe> 其中: iframe用于设置文本或图形的浮...
分类:Web程序   时间:2014-11-17 12:38:15    阅读次数:182
leetcode Unique Paths
A robot is located at the top-left corner of amxngrid (marked 'Start' in the diagram below).The robot can only move either down or right at any point ...
分类:其他好文   时间:2014-11-17 12:13:51    阅读次数:184
Leetcode-Unique Paths
A robot is located at the top-left corner of a m x n grid (marked 'Start' in the diagram below).The robot can only move either down or right at any po...
分类:其他好文   时间:2014-11-17 06:51:30    阅读次数:164
数据库连接备忘
1.Access2007using System.Data.OleDb;using System.IO;using System.Diagnostics; string dataFile = Path.GetDirectoryName(Process.GetCurrentProcess().Mai....
分类:数据库   时间:2014-11-16 13:25:17    阅读次数:172
Linux常用命令(六) - mv
mv命令是move的缩写,可以用来移动文件或者将文件改名(move (rename) files),是Linux系统下常用的命令,经常用来备份文件或者目录。 1.命令格式: mv [选项] 源文件或目录 目标文件或目录 2.命令功能: 视mv命令中第二个参数类型的不同(是目标文件还是目标目录),mv命令将文件重命名或将其移至一个新的目录中。 当第二个参数类型是文件时,mv命令完成...
分类:系统相关   时间:2014-11-13 22:36:10    阅读次数:320
[leetcode]Triangle
问题描述: Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below. For example, given the following triangle [ [2], [3,4...
分类:其他好文   时间:2014-11-11 21:09:06    阅读次数:207
realloc函数
1. realloc失败的时候,返回NULL2. realloc失败的时候,原来的内存不改变,也就是不free或不move,(这个地方很容易出错)3. 假如原来的内存后面还有足够多剩余内存的话,realloc的内存=原来的内存+剩余内存,realloc还是返回原来内存的地址; 假如原来的内存后面没有...
分类:其他好文   时间:2014-11-11 16:29:18    阅读次数:181
Cocos2d-X循环背景效果
准备一张两边可循环连接的图,使用下面代码即可实现~HelloWorld::bd(0, 0, 98);HelloWorld::bd(0, 2130, 99);this->schedule(schedule_selector(HelloWorld::move));void HelloWorld::bd(...
分类:其他好文   时间:2014-11-11 07:03:19    阅读次数:368
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!