先澄清几个误区
1、CharSequence 不是 Char :有些小朋友根据参数的类型选择Replace或ReplaceAll方法
2、Replace 和 ReplaceAll :并不是有些小朋友想象的Replace只替代一个出现的字符,ReplaceAll 替换所有字符
3、循环替换的误区
String eventJson = ".............";
Iterator<Entry> itPro = map.entrySet().iterator();
...
分类:
其他好文 时间:
2014-05-10 08:39:17
阅读次数:
257
内核版本: linux-2.6.30.4 文件:
linux-2.6.30.4/arch/arm/kernel/entry-common.S
linux-2.6.30.4/arch/arm/kernel/calls.S calls.S: 1: /* 2: *
linux/arch/arm/kerne...
分类:
其他好文 时间:
2014-05-08 07:18:46
阅读次数:
476
8.2.2 操作ELF格式文件的方法
综合以上的描述,总结执行ELF格式文件的方法,步骤如下:
(1)从文件起始位置读取一个struct elf32_ehdr结构体,验证文件的正确性以及文件与操作系统是否匹配。
(2)找到该结构体中e_entry成员,从系统中获得这个值所指向的内存地址。
(3)读出struct elf32_ehdr结构体中的e_phoff、e_phextsize以及e_...
分类:
其他好文 时间:
2014-05-08 00:30:22
阅读次数:
845
mongodb的一个简单使用。package com.chuntent.mongo;import
java.util.Map;import java.util.Map.Entry;import com.mongodb.BasicDBObject;import
com.mongodb.DB;impor...
分类:
数据库 时间:
2014-05-07 20:56:13
阅读次数:
493
发布方使用Entry
Points(入口点)向使用方介绍包中的Python对象,例如函数和类。可扩展的应用和框架通过名字或组(name or
group)在特定的包中或者系统路径中能够访问到的包中查询入口点,然后按照入口点的描述来观察和加载这个Python对象。入口点隶属于某个组,这个组的命名规则是...
分类:
编程语言 时间:
2014-05-07 13:40:59
阅读次数:
399
常见系统数据文件
下表列出了常见的系统数据文件及其查找函数。
以/etc/passwd文件为例,读取数据的程序框架如下:
void get_pw_entry()
{
struct passwd *ptr;
setpwent();
while ((ptr = getpwent()) != 0) {
……
}
endpwe...
分类:
其他好文 时间:
2014-05-07 08:46:54
阅读次数:
341
此文仅为学习记录,内容会包括一些数学概念,定义,个人理解的摘要。希望能够分享一些学习内容。第一节:Row Reduction and Echelon
FormsEchelon form: 行消元后的矩阵Reduced echelon form: 行消元并且leading entry为1的矩阵。Ech...
分类:
移动开发 时间:
2014-05-07 00:08:07
阅读次数:
654
// test.cpp : Defines the entry point for the
console application.//#include "stdafx.h"#include #include #include
"winioctl.h"#define IOCTL_STORAGE_QU...
分类:
其他好文 时间:
2014-05-05 10:52:44
阅读次数:
370
1.bootm地址和load address一样 此种情况下,bootm不会对uImage
header后的zImage进行memory move的动作,而会直接go到entry point开始执行。因此此时的entry point必须设置为load
address + 0x40。如果ker...
分类:
系统相关 时间:
2014-05-04 20:14:20
阅读次数:
501
1,按照vmware,导入系统(注意td提供的版本是64位的)
2,linux系统:root/root
3,配置ip:
Enter a cop entry in the linux hosts file (/etc/hosts accessible from the linux command line in the VMware console, ie. c:>vi /etc/host...
分类:
其他好文 时间:
2014-04-30 22:13:39
阅读次数:
503