Traceback (most recent call last): File "C:\Program Files (x86)\JetBrains\PyCharm Community Edition 4.5.2\helpers\pydev\pydevd.py", line 2357, in glob ...
分类:
其他好文 时间:
2016-12-11 02:47:15
阅读次数:
197
1如何将布尔值转为OC对象? 1把 BOOL 值包装到 NSNumber中: NSNumber *boolNumber = [NSNumber numberWithBool:YES] 2获取BOOL值: BOOL b = [boolNumber boolValue]; ...
分类:
其他好文 时间:
2016-12-11 02:46:31
阅读次数:
175
JavaScript函数内部修改全局变量的问题 分享| 今天 10:44梵天莲华 | 浏览 23 次 Javascript编程语言函数 修改标签 代码如下,为什么加了 function a(){};这个函数,就不能改变全局变量a的值了? var a = 1; function b(){ a = 2; ...
分类:
编程语言 时间:
2016-12-11 02:26:44
阅读次数:
195
最新版的MacOS Sierra默认带的python环境仍然为2.7.10,本文将介绍使用Brew安装python3.5并做简单的配置,打造python2,python3共存的开发环境 直接尝试brew安装,提示需要执行brew link gdbm 按提示执行brew link gdbm,提示目录权 ...
分类:
编程语言 时间:
2016-12-11 02:19:30
阅读次数:
273
一、注册自动加载方法以及序列化的实现 class Common{ public function autoload($class_name){ if(file_exists('./'.$class_name.'.class.php')){ include('./'.$class_name.'.cla ...
分类:
其他好文 时间:
2016-12-11 01:45:07
阅读次数:
195
1、action开发 开发的几种方式 (1)、继承自ActionSupport,(如果用struts的数据效验功,能必须必须使用此功能,因为ActionSupport实现了数据效验的接口) (2)、实现Action接口,该接口的内容如下。(有五个常量和一个方法) (3)、不实现任何类,也不继承任何接 ...
分类:
其他好文 时间:
2016-12-11 01:30:31
阅读次数:
298
https://msdn.microsoft.com/en-us/library/1ez7dh12.aspx A dynamic-link library (DLL) is an executable file that acts as a shared library of functions a ...
分类:
其他好文 时间:
2016-12-11 01:05:23
阅读次数:
140
ogr2ogr -f MySQL MySQL:smfs,host=127.0.0.1,user=root,password=gis D:\spatialData\HB\HuBeiPicture\HuBeiPicture\station.shp -nln gis_station_gdal -updat... ...
分类:
数据库 时间:
2016-12-10 22:53:05
阅读次数:
535
题目描述 Youyouyouyou is very interested in math, one day, an idea came into his mind that how many ways he can patition n same things into no more than m ...
分类:
其他好文 时间:
2016-12-10 22:40:26
阅读次数:
310
PHP与大多数面向对象编程语言一样,不支持多重继承。也就是说每个类只能继承一个父类。 接口正是解决每个类只能继承一个父类这个问题的 接口用什么权限,继承的那个方法也要使用什么权限。 接口的声明使用:interface 接口的继承使用:implements 目录++++++++++++++++++++ ...
分类:
Web程序 时间:
2016-12-10 22:31:40
阅读次数:
195