URIs, URLs, and URNs 首先,URI,是uniform resource identifier,统一资源标识符,用来唯一的标识一个资源。而URL是uniform resource locator,统一资源定位器,它是一种具体的URI,即URL可以用来标识一个资源,而且还指明了如何l ...
分类:
Web程序 时间:
2017-02-12 19:53:46
阅读次数:
193
3992: [SDOI2015]序列统计 Description 小C有一个集合S,里面的元素都是小于M的非负整数。他用程序编写了一个数列生成器,可以生成一个长度为N的数列,数列中的每个数都属于集合S。 小C用这个生成器生成了许多这样的数列。但是小C有一个问题需要你的帮助:给定整数x,求所有可以生成 ...
分类:
其他好文 时间:
2017-02-12 19:53:49
阅读次数:
151
内容来自廖雪峰的官方网站 1、关键字参数 关键字参数有什么用?它可以扩展函数的功能。比如,在person函数里,我们保证能接收到name和age这两个参数,但是,如果调用者愿意提供更多的参数,我们也能收到。试想你正在做一个用户注册的功能,除了用户名和年龄是必填项外,其他都是可选项,利用关键字参数来定 ...
分类:
其他好文 时间:
2017-02-12 19:53:32
阅读次数:
144
w单图,绕开了显示的兼容性。 http://res.m.suning.com/project/JoinGo/intro.html http://res.m.suning.com/project/JoinGo/assets/images/group/fullpage.png http://res.su ...
分类:
微信 时间:
2017-02-12 19:51:38
阅读次数:
472
Anniversary party Font: Times New Roman | Verdana | Georgia Font Size: ← → Problem Description There is going to be a party to celebrate the 80-th Ann ...
分类:
其他好文 时间:
2017-02-12 19:50:38
阅读次数:
254
异常处理 1.异常处理语法 try {要检查的程序语句;} catch( Exception e)(注:异常类 对象名称 常用Exception e) {异常发生时的吃力语句;} finally {一定会执行到的程序代码;} 应用代码: public class Java0 { public sta ...
分类:
编程语言 时间:
2017-02-12 19:49:18
阅读次数:
165
1、用ie8时强制用ie8解析,需要加下面的话,这句话会强制ie8浏览器按照ie8的 <meta http-equiv="X-UA-Compatible" content="IE=8"> 2、ie8 如何防止console没有定义,加下面的代码 3、如何获取浏览器的版本 ...
分类:
其他好文 时间:
2017-02-12 19:49:01
阅读次数:
135
1. 进入ngix 的目录的conf 目录 的 vhosts 2. 复制一份新的v2.edc.com.conf 3. server_name : v2.edc.com root : /ali/...../目录 4. 重启nginx 服务 │ /etc/init.d/nginx start|stop| ...
分类:
Web程序 时间:
2017-02-12 19:08:42
阅读次数:
252
// 近距离传感器的实现封装在UIKit中 // 需要使用真机测试 import UIKit enum YSSession:Int { case audio = 1 // 音频 case video = 2 // 视频 } class ViewController: UIViewController... ...
分类:
其他好文 时间:
2017-02-12 19:06:47
阅读次数:
171
Count the number of segments in a string, where a segment is defined to be a contiguous sequence of non-space characters. Please note that the string ...
分类:
其他好文 时间:
2017-02-12 19:07:27
阅读次数:
113
模式分组: /fred+/会匹配freddd这样的 /(fred)+/会匹配fredfredfred这样的 /(fred)*/则会匹配abcdef任意的 圆括号同时也使得重新使用某些字符串成为可能。反向引用来引用圆括号中的模式所匹配的文字,这个行为我们称为捕获组。 反向行为的写法是在反斜线后面接上数... ...
分类:
其他好文 时间:
2017-02-12 19:06:55
阅读次数:
131
https://github.com/SublimeCodeIntel/SublimeCodeIntel/issues/461 Thanks to @catgsmith ,I find a similar way to solve this problem in Windows:Select Pac ...
分类:
其他好文 时间:
2017-02-12 19:05:25
阅读次数:
256
这里记录在Visual Studio Code中,我经常用到的插件。C#Markdown Theme Kitvscode-icons ...
分类:
其他好文 时间:
2017-02-12 19:04:29
阅读次数:
194
一、题目要求 Given a sorted array and a target value, return the index if the target is found. If not, return the index where it would be if it were inserte ...
分类:
其他好文 时间:
2017-02-12 19:03:47
阅读次数:
148
一般有三年以上php开发经验去百度、腾讯面试,常会接触的面试题小总结一下: 0.简单做一下自我介绍,? 然后谈一下近三年来你的得意之作? 1.面试官看过你的简历,会问一些你做的项目的用户量、pv、吞吐量、相关难点和解决方法等 2.数据库设计经验,为什么进行分表? 分库? 一般多少数据量开始分表? 分 ...
分类:
Web程序 时间:
2017-02-12 19:03:05
阅读次数:
239
1.常用快捷键: 注释:Ctrl+K+C 取消注释:Ctrl+K+U 增加缩进:Table 减少缩进: Table+Shift 格式化文本:A. Ctrl+K+F(选中文本) B. Ctrl+K+D(全部文本) 自动生成Set/Get方法:prop+tab 2.有时会遇到Visio Studio 在 ...
分类:
其他好文 时间:
2017-02-12 19:02:10
阅读次数:
705