Airport Express
In a small city called Iokh, a train service, Airport-Express, takes residents to the airport more quickly than other transports. There are two types of trains in Airport-Express, t...
分类:
其他好文 时间:
2015-05-12 09:25:59
阅读次数:
95
Templates can be defined within classes or class templates, in which case they are referred to as member templates. Member templates that are classes ...
分类:
其他好文 时间:
2015-05-09 16:10:14
阅读次数:
133
NGINX反向代理、动静结合
一、默认轮询模式
好处:每个请求按时间顺序逐一分配到不同的后端服务器,如果后端服务器down掉,能自动剔除。
http {
include mime.types;
default_type application/octet-stream;
#tcp_nopush on;
...
分类:
其他好文 时间:
2015-05-08 22:13:51
阅读次数:
141
ECMAScript variables may contains two different types of data: primitive values and reference values. Primitive values are simple atomic pieces of d.....
分类:
其他好文 时间:
2015-05-08 14:50:03
阅读次数:
116
Estimator
The estimator determines the overall cost of a given execution plan. The estimator generates three different types of measures to achieve this goal:
Selectivity
This measure represe...
分类:
其他好文 时间:
2015-05-06 15:05:50
阅读次数:
223
场景如下View ADisplayTemplates BDisplayTemplates C在 A中 通过@Html.DisplayForModel()生成 B 成功在B 中通过@Html.DisplayForModel() 生成C 失败解决方法:在B中通过@Html.Partial("Displa...
分类:
其他好文 时间:
2015-05-06 12:58:56
阅读次数:
109
IOS应用之间调用1.在appA的info.plist中定义URL,就是在文件中添加URL types一项。可按下图进行添加2. 在appB的代码中打开刚才定义的URL,代码如下NSURL*url=[NSURLURLWithString:@"myapp:"]; [[UIApplicationshar...
分类:
移动开发 时间:
2015-05-06 12:56:29
阅读次数:
233
org.springframework.remoting.RemoteLookupFailureException: Lookup of RMI stub failed; nested exception is java.rmi.UnmarshalException: error unmarshal...
分类:
移动开发 时间:
2015-05-05 19:29:31
阅读次数:
256
Syntax error on token "String", @ expected解决:去掉类名后的括号 ps:这错误太二了2.The nested type UserService cannot hide an enclosing type因为代码拷贝,有两个类名【内部类不应该和其外部类同名】,...
分类:
编程语言 时间:
2015-05-05 19:17:39
阅读次数:
171
基于项目需要,有时候需要通过一个链接,或者二维码扫描来直接打开我们所开发的客户端.当然了.客户端也不仅仅是需要被打开,而且还要跳到相应的页面去,因此这里需要传参.客户端想用链接打开,必须要在info.plist中添加相应的URL types 如图:(若没有相应的行请自行添加!)设置完这个url之后呢...
分类:
移动开发 时间:
2015-05-05 19:09:42
阅读次数:
251