main.xml
...
分类:
其他 时间:
2014-04-23 05:15:01
收藏:
0 评论:
0 赞:
0 阅读:
466
ThreadLocal是什么
早在JDK 1.2的版本中就提供java.lang.ThreadLocal,ThreadLocal为解决多线程程序的并发问题提供了一种新的思路。使用这个工具类可以很简洁地编写出优美的多线程程序。
ThreadLocal很容易让人望文生义,想当然地认为是一个“本地线程”。其实,ThreadLocal并不是一个Thread,而是Thread的局部变量,也许把它...
分类:
其他 时间:
2014-04-23 03:46:01
收藏:
0 评论:
0 赞:
0 阅读:
542
Problem Description
Ignatius has just come back school from the 30th ACM/ICPC. Now he has a lot of homework to do. Every teacher gives him a deadline of handing in the homework. If Ignatius hands in ...
分类:
其他 时间:
2014-04-23 04:53:54
收藏:
0 评论:
0 赞:
0 阅读:
430
神奇的Python
因为Python的动态特性, 可以直接使用eval实现工厂模式...
分类:
编程语言 时间:
2014-04-23 05:17:37
收藏:
0 评论:
0 赞:
0 阅读:
238
类模型指导我们如何声明类,动态模型指导我们如何实现类!动态模型设计一般都是在类模型设计完成后才开始,因为动态模型设计的时候一般都需要用到类模型中的类。相对类模型来说,动态模型要相对简单一些,主要原因在于动态模型设计的时候没有什么设计原则和设计模式需要应用,只需要对照用例模型,根据用例模型的特点,选取一个合适的动态模型将其表述出来即可。动态模型在实际开发过程中有非常重要的作用,简单来说,如果没有动态...
分类:
其他 时间:
2014-04-23 02:56:58
收藏:
0 评论:
0 赞:
0 阅读:
514
最近写了一个chrome的websocket extension, server端用的是Netty, 后来发现golang 实现websocket 非常简单,高效, 下面是例子, 简单实现了用户登录,广播,相当于聊天室!
package main
import (
"code.google.com/p/go.net/websocket"
"html/template"
"log"...
分类:
Web开发 时间:
2014-04-23 05:02:47
收藏:
0 评论:
0 赞:
0 阅读:
732
HTML辅助方法是可以通过视图的html属性调用的方法。相应的,也可以通过Url属性调用URL辅助方法,通过Ajax属性调用AJAX辅助方法。所有这些方法都有一个共同的目标:使视图编码变得容易。
下面主要介绍html辅助方法还原为纯html代码之后的是什么模样。
1、 @Html.TextArea(“text”,”hello world”)
一键还原helloworld
2、 @Htm...
分类:
Web开发 时间:
2014-04-23 05:04:50
收藏:
0 评论:
0 赞:
0 阅读:
551
SQL> oradebug event 10046 trace name context forever,level 8
ORA-00072: process "Unix process pid: 1564906, image: oracle@db02 (P007)" is not active
SQL> oradebug setospid 2703564
Oracle pid: 452, ...
分类:
数据库技术 时间:
2014-04-23 03:04:19
收藏:
0 评论:
0 赞:
0 阅读:
600
一、程序C语言代码展示如下:
/************************************************
运行平台:vc++6.0
实现功能:体现realloc函数的功能
************************************************/
#include
#include
#define NUM1 5
#define NU...
分类:
编程语言 时间:
2014-04-23 04:47:54
收藏:
0 评论:
0 赞:
0 阅读:
497
RE好久,靠,原来rank等数组得加倍了……晕……
理解了后缀数组,不过最长公共前缀还没太理解,先用模板解决问题先吧……
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define...
分类:
其他 时间:
2014-04-23 03:57:31
收藏:
0 评论:
0 赞:
0 阅读:
691
这一章,我们通过分析如何获取MediaPlayerService,并调用其中的方法。...
分类:
移动平台 时间:
2014-04-23 03:43:19
收藏:
0 评论:
0 赞:
0 阅读:
555
出现了这个问题,报错是
[framework] 2014-04-22 17:12:04,707 - com.opensymphony.xwork2.ognl.OgnlValueStack WARN
- Error setting expression 'costRecord.yearMonth' with value '[Ljava.lang.String;@d2877a'
在网上搜了...
分类:
其他 时间:
2014-04-23 04:00:18
收藏:
0 评论:
0 赞:
0 阅读:
530
文献引用:Chin E, Felt A P, Greenwood K, et al. Analyzing inter-application communication in Android[C]//Proceedings of the 9th international conference on Mobile systems, applications, and services. ACM, 2011: 239-252....
分类:
移动平台 时间:
2014-04-23 03:34:12
收藏:
0 评论:
0 赞:
0 阅读:
502
题意:给n个字符串,求最长的一个字符串s使得给出的n个字符串中都会出现s或者s的反转。
解法:KMP裸题,枚举第一个串的所有子串对其他所有串进行KMP。
代码:/****************************************************
* author:xiefubao
******************************************...
分类:
其他 时间:
2014-04-23 02:23:53
收藏:
0 评论:
0 赞:
0 阅读:
471
我们再来了解一下json、XML、html的转义。
对JSON字符进行转义的原理跟上一节讨论的那几个函数不太一样。在Javascript中的字符有多种表达形式。
1,ASCII码的8进制转义,16进制转义,比如换行符可以用”\x0A” 和 “\12” 表示 。
2,ASCII码里面特殊字符的转义,比如换行符还可以用”\n” 表示。
3,从开发者角度来看,Javascript中的所有字符...
分类:
其他 时间:
2014-04-23 04:01:34
收藏:
0 评论:
0 赞:
0 阅读:
532
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;
map key;
map ssym;
void scanner(FILE *fp)
{
char w...
分类:
其他 时间:
2014-04-23 02:49:58
收藏:
0 评论:
0 赞:
0 阅读:
504
作为一个从事oracle plsql开发2年的程序员,如今跳槽从事DB2数据仓库项目。
以PL/SQL Developer为参考,以下简称PLSQL,细说QUEST CENTRAL FOR DB2 5.0 N宗罪
运行平台:window xp sp3
1:默认行数限制,刚开始用的时候,让我以为数据未插入,因为更本看不到,也根本不提示说其实还有更多数据
在这点上PLSQL是默认出10...
分类:
数据库技术 时间:
2014-04-23 04:06:18
收藏:
0 评论:
0 赞:
0 阅读:
475
In ``Rotating Sentences,'' you are asked to rotate a series of input sentences 90 degrees clockwise. So instead of displaying the input sentences from left to right and top to bottom, your program wil...
分类:
其他 时间:
2014-04-23 05:00:05
收藏:
0 评论:
0 赞:
0 阅读:
484
定义限制条件来改变一个 UI 组件在其父视图的水平和垂直方向布局的方法。
可以使用方程式里 H:方向符号代表水平方向的边距,使用 V:方向符号代表垂直方向的边 距。
1.改变按钮在屏幕上的边距
使用 visual Format Language 在水平方向的限制条件使用的三个例子
要编写的例子的约束条件如下:
·邮件区域离视图的顶部具有一个标准的垂直方向...
分类:
移动平台 时间:
2014-04-23 04:11:44
收藏:
0 评论:
0 赞:
0 阅读:
532
NLP领域的part of speech tag(POS Tag)简单介绍、翻译总结与举例。...
分类:
其他 时间:
2014-04-23 04:31:39
收藏:
0 评论:
0 赞:
0 阅读:
794