/*将三个文本文件的内容copy到一个文件中。
* 基本思路:通过续写的方式。
*
* JAVA之IO技术中提供了一个可串联的字节输入流对象。
*
* 合并流对象
* SequenceInputStream:
* SequenceInputStream 表示其他输入流的逻辑串联。
* 它从输入流的有序集合开始,并从第一个输入流开始读取,
* 直到到达文件末尾,接着从第二个输入...
分类:
编程语言 时间:
2014-05-10 10:11:32
阅读次数:
314
本文之初的目的是讲述设计模式中的
Prototype(原型)模式,但是如果想较清楚地弄明白这个模式,需要了解对象克隆(Object Clone),Clone
其实也就是对象复制。复制又分为了浅度复制(Shallow Copy)和 深度复制(Deep Copy),浅度复制 和 深度复制又是以 如何复制...
分类:
其他好文 时间:
2014-05-08 20:13:45
阅读次数:
339
最近在做一个机票数据抓取的项目,经常需要在代码中post一堆参数。通过Httpfox
copy下 所有row到Editplus,通过正则替换:(.*?)\s+?(.*)\nnew
NameValuePair("\1","\2"),\n可以直接生成Java代码。
分类:
其他好文 时间:
2014-05-08 19:42:26
阅读次数:
259
【题目】
原文:
1.3 Design an algorithm and write code to remove the duplicate characters in a string without using any additional buffer. NOTE: One or two additional variables are fine. An
extra copy of...
分类:
其他好文 时间:
2014-05-07 08:48:12
阅读次数:
372
G++ 2.91.57,cygnus\cygwin-b20\include\g++\stl_stack.h 完整列表
/*
*
* Copyright (c) 1994
* Hewlett-Packard Company
*
* Permission to use, copy, modify, distribute and sell this software
* and its do...
分类:
其他好文 时间:
2014-05-07 07:40:07
阅读次数:
322
题目:
A linked list is given such that each node contains an additional random pointer which could point to any node in the list or null.
Return a deep copy of the list.
思路:
主要是深层复制的问题:
本题比较简...
分类:
其他好文 时间:
2014-05-07 02:44:38
阅读次数:
344
写时拷贝(copy-on-write) COW技术...
分类:
其他好文 时间:
2014-05-06 23:42:43
阅读次数:
270
五一中间断了几天,开始继续。。。
1、
??
Copy List with Random Pointer
A linked list is given such that each node contains an additional random pointer which could point to any node in the list or null.
Return a...
分类:
其他好文 时间:
2014-05-06 18:54:59
阅读次数:
386
目前为目最全的CURL中文说明了,学PHP的要好好掌握.有很多的参数.大部份都很有用.真正掌握了它和正则,一定就是个采集高手了.PHP中的CURL函数库(Client
URL Library Function)curl_close - 关闭一个curl会话 curl_copy_handle - 拷贝...
分类:
其他好文 时间:
2014-05-06 10:19:24
阅读次数:
510