1. basic optionssed [options] {command} {input-file}sed -nsed -n 'p' a.out打印a.out文件内容-n: 取消默认打印到屏幕功能sed -fsed [options] -f {sed-commands-in-file} {i.....
分类:
其他好文 时间:
2014-07-27 22:35:39
阅读次数:
375
DescriptionYou've decided to carry out a survey in the theory of prime numbers. Let us remind you that a prime number is a positive integer that has e...
分类:
其他好文 时间:
2014-07-27 22:31:39
阅读次数:
809
infoq 上微信后台存储架构视频很是值得认真一听,大概内容摘要如下:主要内容:同城分布式强一致,园区级容灾KV存储系统- sync 序列号发生器 移动互联网场景下,频繁掉线重连,使用 sync 消息协议是非常理想的。相比于推送协议,更加可靠、实现简洁(不需要考虑离线消息)。从陌陌分享看,也使用s....
分类:
微信 时间:
2014-07-27 22:25:09
阅读次数:
692
H - 掉了你 列组
Time Limit:1000MS Memory Limit:65536KB 64bit IO Format:%I64d & %I64u
Submit Status
Description
In how many ways can you choose k elements out of n elements, not taki...
分类:
其他好文 时间:
2014-07-27 11:46:14
阅读次数:
190
本文记录Hibernate4.3.5搭建Log4j日志环境的过程1、搞清楚Hibernate4.3.5的日志环境依赖方法:查看帮助文档3.5. LoggingImportantCompletely out of date. Hibernate uses JBoss Logging starting ...
分类:
系统相关 时间:
2014-07-27 10:04:22
阅读次数:
2115
题目地址:http://acm.hdu.edu.cn/showproblem.php?pid=2048一开始用的System.out.printf("%.2f%%\n", result)输出,PRESENTATION ERROR. 换成System.out.println(String.format...
分类:
编程语言 时间:
2014-07-26 17:02:31
阅读次数:
287
I could also have called this "wildcard .NET mapping in IIS Express from web.config."I'm sure that, like, everyone out there but me has figured this o...
分类:
其他好文 时间:
2014-07-26 13:58:34
阅读次数:
239
/**
*发送一个异步http协议的Get请求,不用关心结果
*@param$url
*@param$errno
*@param$errstr
*@param$time_out
*/
staticpublicfunctiongetAsn($url,$errno=‘‘,$errstr=‘‘,$time_out=5){
//移除url中的空格,如果可以格式化url,或许会更好
$url=str_replace(‘‘,‘‘,$url);
..
分类:
Web程序 时间:
2014-07-26 03:13:17
阅读次数:
262
我们在java中
Java中初始化的顺寻?
java代码:
package sru.love.c;
class Person
{
String name = "Person";
static
{
System.out.println("我是 Person 的 static 代码块");
}
{
System.out.println("我是 Person 构...
分类:
编程语言 时间:
2014-07-26 02:56:06
阅读次数:
185
今天对于内存的理解 又加深了一步:
对下面代码的理解:
class Person
{
private String name="xiaohong";
private int age=23;
private static String country="CN";
{
System.out.println(name+" "+age);
}
public Person(String...
分类:
其他好文 时间:
2014-07-26 02:11:03
阅读次数:
189