if we want to filter with sed pattern and just
print the filtered lines without any further editing , we can do it like thisls
-a1 ~ | sed -ne "/^\./p...
分类:
其他好文 时间:
2014-05-28 22:58:56
阅读次数:
294
JSP连接mysql数据库 "); out.print("性别:姓名:密码:");
while(rs.next()){ out.print(""); out.print(""+rs.getString("sex")+"");
out.print(...
分类:
数据库 时间:
2014-05-26 19:13:38
阅读次数:
350
C++的静态方法是用static关键字,python
j是没用static的。python中实现静态方法和类方法都是依赖于python的修饰器来实现的。classMyClass:defmethod(self):print("method")@staticmethoddefstaticMethod()...
分类:
编程语言 时间:
2014-05-26 18:16:42
阅读次数:
282
configure 文件中 print sys.prefix 等不能支持python3的原因
根据http://blog.csdn.net/jklfjsdj79hiofo/article/details/26607797
在configure文件去查找 该上面的语句...
分类:
Web程序 时间:
2014-05-26 04:42:25
阅读次数:
278
$arr = array(3,55,45,2,67,76,6.7,-65,85,4);function
quickSort($arr){ if (count($arr) ";print_r($new_arr);exit;
分类:
Web程序 时间:
2014-05-25 19:13:17
阅读次数:
233
//选择排序法$arr =
array(3,55,45,2,67,76,6.7,-65,85,4);function selectSort($arr){ for ( $i=0;
$i";print_r($res);exit;
分类:
Web程序 时间:
2014-05-25 19:10:18
阅读次数:
202
'''
【程序91】
题目:时间函数举例1
1.程序分析:
2.程序源代码:
'''
if __name__ == '__main__':
import time
print time.ctime(time.time())
print time.asctime(time.localtime(time.time()))
print time.asctime(time...
分类:
编程语言 时间:
2014-05-25 18:15:41
阅读次数:
311
1 #-*-coding:UTF-8 -*- 2 import datetime,time 3
import os 4 print u"=================尊敬的梦猩魂,欢迎使用记事本=================="; 5
con=True 6 while con: 7 ...
分类:
编程语言 时间:
2014-05-25 08:46:15
阅读次数:
286
哈希表简单实现,练个手
#include "stdafx.h"
#include
using namespace std;
#define HASHSIZE 12
typedef struct HashTable
{
int *elem;
int count;
}HashTable;
int m = 0;
void Print(HashTable* ...
分类:
其他好文 时间:
2014-05-25 07:02:06
阅读次数:
169
import java.util.stream.*;
class KV{
String ch;
int id;
}
public class Test {
private static void print(String text, int offset) {
IntStream.range(0, text.length())
.mapToObj(i -> new KV(){{c...
分类:
编程语言 时间:
2014-05-24 22:09:03
阅读次数:
363