http://unicode.org/reports/tr35/tr35-6.html#Date_Format_PatternsAppendix F:Date
Format PatternsA date pattern is a string of characters, where specifi...
分类:
其他好文 时间:
2014-06-11 23:37:19
阅读次数:
499
Survopt.v3.5.5
1CDGedco.Omni.3D.Design.V8.0三维地震勘测设计Nemetschek Vectorworks 2012-ISOmicrostatiom
V8i SS3FEFLOW v6.0.6007-ISODynasim.Dymola.v7.0-ISO 1CD(...
分类:
其他好文 时间:
2014-06-11 22:10:12
阅读次数:
382
1 /* 2 Design and implement a data structure
for Least Recently Used (LRU) cache. It should support the following operations:
get and set. 3 ...
分类:
其他好文 时间:
2014-06-11 13:08:46
阅读次数:
297
Heroku团队根据heroku platform
api和他们自己内部系统的实践经验总结了一些http
api设计的准则,发布到了github上。地址:https://github.com/interagent/http-api-design鉴于见到太多公司的http接口没有按照标准规范来实施,推...
1、设计性能测试场景
Controller有两个视图:设计(Design)视图和运行(Run)视图。启动Controller,在Controller主界面里,我们可以看到这两个视图。
1、设计视图 设计视图显示场景中的所有Vuser组/脚本的列表、负载生成器(Load Generator)...
分类:
其他好文 时间:
2014-06-11 10:53:58
阅读次数:
209
一、”自适应网页设计”的概念2010年,Ethan
Marcotte提出了“自适应网页设计”(Responsive Web
Design)--这个名词,指可以自动识别屏幕宽度、并做出相应调整的网页设计。二、允许网页宽度自动调整“自适应网页设计”到底是怎么做到的?其实并不难。首先,在网页代码的头部,加...
分类:
Web程序 时间:
2014-06-11 10:34:29
阅读次数:
282
今天在某公司(不透露了)写了一套Java面试题。有个题大概是这样的。
Which design patternused in Java.lang.Runtime?
就是说java.lang.Runtime里,用了什么设计模式
还有java.utils.collection里用了什么设计模式。
当时由于对这冷门知识了解的不够多,而且api也读的少,所以一时答不上来。
回到家搜了下。...
分类:
编程语言 时间:
2014-06-08 18:10:17
阅读次数:
547
定制pattern的string模板(template) 详解本文地址: http://blog.csdn.net/caroline_wendy/article/details/28625179 string.Template的pattern是一个正则表达式, 可以通过覆盖pattern属性, 定义新的正则表达式.如: 使用新的定界符"{{", 把{{var}}作为变量语法.代码:# -*- coding: utf-8 -*-
'''
Creat...
分类:
编程语言 时间:
2014-06-08 18:00:47
阅读次数:
308
【题目】
Say you have an array for which the ith element is the price of a given stock on day i.
If you were only permitted to complete at most one transaction (ie, buy one and sell one share of the stock), design an algorithm to find the maximum profit.
...
分类:
其他好文 时间:
2014-06-08 15:11:58
阅读次数:
298
Implement wildcard pattern matching with support for '?' and '*'.public class Solution {
public boolean isMatch(String s, String p) {
if (s == null || p == null) return false;
if (...
分类:
编程语言 时间:
2014-06-08 03:10:46
阅读次数:
216