use entire drive|replace existing linux system|use free space 在装 Linux 的时候,到分割硬盘及格式化硬盘这步的时候,有几个选项,他们的意思及将执行的操作分别是: ( 1 ) Use entire drive (使用整个磁盘) 这个方 ...
分类:
系统相关 时间:
2016-12-07 07:47:27
阅读次数:
255
C语言中memset函数详解 (2011-11-16 21:11:02) 转载▼ C语言中memset函数详解 转载▼ 标签: 杂谈 分类: 工具相关 杂谈 功 能: 将s所指向的某一块内存中的每个字节的内容全部设置为ch指定的ASCII值, 块的大小由第三个参数指定,这个函数通常为新申请的内存做初 ...
分类:
其他好文 时间:
2016-12-06 22:55:54
阅读次数:
197
import os#使用 os.getcwd() 函数获得当前工作目录a=os.getcwd()print(a)#使用 os.chdir()函数改变当前工作目录os.chdir("d:")print(os.getcwd())#使用os.system() 空格里面跟系统指令可以和系统交互如:os.sy ...
分类:
其他好文 时间:
2016-12-06 22:54:50
阅读次数:
255
请看下面的例子: var Person = function(name,age){ this.name = name; this.age = age || "未填写"; this.hobbys = []; } Person.prototype = { sayName:function(){ cons ...
分类:
其他好文 时间:
2016-12-05 23:37:04
阅读次数:
277
src/pages/Detail.js ? import React from ‘react’ loads the React library, which is pretty central to our whole application and thus is required. ? clas ...
分类:
其他好文 时间:
2016-12-05 22:09:35
阅读次数:
154
import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; public class demo6 { /** * 把一张图片拷贝到指 ...
分类:
其他好文 时间:
2016-12-05 20:06:29
阅读次数:
198
with open('test.txt','r',encoding='utf8') as f: Exception:'encoding' is an invalid keyword argument for this function Reason:'encoding' is not suitabl ...
分类:
编程语言 时间:
2016-12-05 17:10:14
阅读次数:
216
1 数据准备1.1 先断开adb服务,然后开启adb服务(a)adb kill-server 这一步很重要,因为当我们开发时做电量记录时会打开很多可能造成冲突的东西。为了保险起见我们重启adb。adb...
分类:
其他好文 时间:
2016-12-04 21:15:51
阅读次数:
785
DK1.5引入了新的类型——枚举。在 Java 中它虽然算个“小”功能,却给我的开发带来了“大”方便。 用法一:常量 在JDK1.5 之前,我们定义常量都是: publicstaticfianl.... 。现在好了,有了枚举,可以把相关的常量分组到一个枚举类型里,而且枚举提供了比常量更多的方法。 J ...
分类:
编程语言 时间:
2016-12-04 17:23:46
阅读次数:
265