demo下载地址http://download.csdn.net/detail/metis100/8498401安卓开发一年,开始想整理些资料成库,以备日后快速开发。
第一天,整理了常用的dialog,包括:single Choice Dialog,Multiple choice Dialog,Input Dialog ,Progress Dialog….
代码在云盘中 ,点击链接下载http:...
分类:
其他好文 时间:
2015-03-19 14:48:56
阅读次数:
126
Javascript语言的执行环境是"单线程"(single thread)一次只能完成一件任务。如果有多个任务,就必须排队,前面一个任务完成,再执行后面一个任务Javascript语言将任务的执行模式分成两种:同步(Synchronous)和异步(Asynchronous)"异步模式"则完全不同,...
分类:
编程语言 时间:
2015-03-19 14:39:44
阅读次数:
170
'?' Matches any single character.'*' Matches any sequence of characters (including the empty sequence).The matching should cover the entire input stri...
分类:
其他好文 时间:
2015-03-18 17:20:10
阅读次数:
112
一、 yum作用: yum 命令是在Fedora 和RedHat 以及SUSE 中基于rpm 的软件包管理器,它可以使系统管理人员交互和自动化地更新与管理RPM软件包, 能够从指定的服务器自动下载RPM包并且安装,可以自动处理依赖性关系, 并且一次安装所有依赖的软件包, 无需繁琐地...
分类:
其他好文 时间:
2015-03-18 17:16:38
阅读次数:
131
源端字符集与endian查看:
SQL> select userenv(‘language’) from dual;
USERENV(‘LANGUAGE’) SIMPLIFIED CHINESE_CHINA.ZHS16GBKSQL> SELECT d.PLATFORM_NAME, ENDIAN_FORMAT
2 FROM VTRANSPORTABLEPLATFORMtp,VT...
分类:
其他好文 时间:
2015-03-18 16:04:01
阅读次数:
151
problem:
Implement regular expression matching with support for '.' and '*'.
'.' Matches any single character.
'*' Matches zero or more of the preceding element.
The matching should cover the entir...
分类:
其他好文 时间:
2015-03-18 12:26:30
阅读次数:
127
Use lMax get the maximum value of a sub SINGLE branch (left branch or right branch or just current node).Use gMax get the maximum value of the whole s...
分类:
其他好文 时间:
2015-03-18 08:56:01
阅读次数:
190
谈到单例模式,我们立马会想到饿汉式和懒汉式加载,所谓饿汉式就是在创建类时就创建好了实例,懒汉式在获取实例时才去创建实例,即延迟加载。饿汉式:Java代码package com.bijian.study;public class Singleton { private static Single...
分类:
编程语言 时间:
2015-03-17 23:21:23
阅读次数:
277
SSO (Single Sign-on) 顾名思义就是几个子项目共用一个登录点. 原理简单来说就是服务端session 共享, 客户端跨域cookies.实现非常简单,protected/config/main.php中修改session配置即可代码如下: 1 $host = explode('.'...
分类:
其他好文 时间:
2015-03-17 14:07:16
阅读次数:
197
Given an array of integers, every element appearstwiceexcept for one. Find that single one.Note:Your algorithm should have a linear runtime complexity...
分类:
其他好文 时间:
2015-03-17 02:00:44
阅读次数:
102