依赖的类 1 /*1 utils.h 2 *# A variety of utility functions. 3 *# 4 *# Some of the functions are duplicates of well known C functions that are not 5 *# sta ...
分类:
编程语言 时间:
2017-03-29 15:44:09
阅读次数:
384
代码如下: JQuery 版反选(上面是mod版) 三元运算版反选 ...
分类:
Web程序 时间:
2017-03-27 18:43:18
阅读次数:
225
1.了解NSAttributedString类 NSDictionary *attributes = @{NSForegroundColorAttributeName: [UIColor redColor],NSFontAttributeName:[UIFont fontWithName:@"Zap ...
分类:
其他好文 时间:
2017-03-27 15:33:36
阅读次数:
140
转载至: Java集合类详解 Java的集合就像是一种容器,可以把对个对象的引用放入容器中,其中不断可以存储不等的多个对象,还可以用于保存具有映射关系的关联数组。其中Java的集合可以分为三种体系: Set集合:内部元素无序,并且元素不可以重复; List集合:内部元素有序,且元素可以重复; Map ...
分类:
编程语言 时间:
2017-03-27 00:45:52
阅读次数:
273
字符函数库中常用的函数 如果参数是标准空白字符,如空格、进纸、换行符、回车 、水平制表符或者垂直制表符,该函数返回true 题目 Andy, 8, has a dream - he wants to produce his very own dictionary. This is not an ea ...
分类:
其他好文 时间:
2017-03-26 16:08:25
阅读次数:
273
Description You have N integers, A1, A2, ... , AN. You need to deal with two kinds of operations. One type of operation is to add some given number to ...
分类:
其他好文 时间:
2017-03-26 11:08:34
阅读次数:
252
ElasticSearch http://localhost:9200/ http://localhost:9200/cluster/health?pretty http://localhost:9200/_plugin/head/ Kibana http://localhost:5601/app/ ...
分类:
Web程序 时间:
2017-03-25 00:49:40
阅读次数:
298
小地图自制功能就不多说了,我的小地图制作参考地址:https://www.youtube.com/watch?v=EeyZ2y2Jpz4 建议直接到地址中去看UGUI的小地图的制作,觉得还是讲得比较好的。 下面在参考地址的制作前提下做一个小地图点击位置映射到地图实体位置中去的功能。 准备工作: 搭建 ...
分类:
编程语言 时间:
2017-03-22 21:30:14
阅读次数:
372
先调用构造器,然后调用init方法,初始化。然后调用service方法。每请求一次调用一次。然后关闭服务器的时候调用destroy ServletConfig: 封装了 Serlvet 的配置信息, 并且可以获取 ServletContext 对象1). 配置 Serlvet 的初始化参数 <ser ...
分类:
其他好文 时间:
2017-03-22 20:38:26
阅读次数:
254
1 装饰器参数 1.1 装饰器和被装饰函数都不带参数 """ 装饰器装饰一个函数时,究竟发生了什么 """ def decorator_hello(func): print("decorator_hello called") return func @decorator_hello def hell ...
分类:
编程语言 时间:
2017-03-22 12:47:12
阅读次数:
201