A-app: Info--URL Types--URL Schemes:A-app(一个标识,允许别的app调用本App) info.plist 添加白名单: LSApplicationQueriesSchemes(Array) B-app(String) //使用 - (void)jumpToBa ...
分类:
移动开发 时间:
2018-10-02 17:59:32
阅读次数:
206
1. 下载网站:https://ffmpeg.zeranoe.com/builds/ 先后下载 Win32 Shared 和 Win32 Dev 两个版本,分别解压缩。 2. 用Visual Studio 创建项目,选择 “Create new project from existing Code ...
分类:
其他好文 时间:
2018-10-01 14:34:17
阅读次数:
131
今天测试的时候,启动一个其他机器预编译好的nginx到目标测试机器(OEL 7.4)启动的时候,报了下列错误: /usr/local/nginx/sbin/nginx: error while loading shared libraries: libpcre.so.0: cannot open s ...
分类:
其他好文 时间:
2018-09-30 20:08:02
阅读次数:
870
数组的智能指针 使用 数组的智能指针的限制: 1,unique_ptr的数组智能指针,没有 和 操作,但支持下标操作[] 2,shared_ptr的数组智能指针,有 和 操作,但不支持下标操作[],只能通过get()去访问数组的元素。 3,shared_ptr的数组智能指针,必须要自定义delete ...
分类:
编程语言 时间:
2018-09-29 21:35:07
阅读次数:
307
https://blog.csdn.net/ouyang111222/article/details/50942893 https://stackoverflow.com/questions/16119902/jedis-pipeline-multi-throws-classcastexceptio ...
分类:
其他好文 时间:
2018-09-28 12:40:46
阅读次数:
141
智能指针 unique_ptr 使用 和shared_ptr不同,可以有多个shared_ptr指向同一个内存,只能有1个unique_ptr指向某个内存。因此unique_ptr不支持普通的拷贝和赋值。 一,先来个表格,唠唠unique_ptr | 操作 | 功能描述 | | | | | uniq ...
分类:
编程语言 时间:
2018-09-28 10:58:51
阅读次数:
387
智能指针 shared_ptr 使用 上一篇 "智能指针是啥玩意" ,介绍了什么是智能指针。 这一篇简单说说如何使用智能指针。 一,智能指针分3类:今天只唠唠shared_ptr shared_ptr unique_ptr weak_ptr 二,下表是shared_ptr和unique_ptr都支持 ...
分类:
编程语言 时间:
2018-09-27 10:36:01
阅读次数:
235
一、安装JDK tar -zxvf jdk-7u67-linux-i586.tar.gz vi /etc/profile 重启一次Centos 编码验证 二、安装eclipse 三、Jedis所需要的jar包 Commons-pool-1.6.jar Jedis-2.1.0.jar 四、Jedis常 ...
分类:
编程语言 时间:
2018-09-27 10:29:19
阅读次数:
159
2.7.2 redis.clients jedis ${jedis.version} ...
分类:
其他好文 时间:
2018-09-26 01:16:36
阅读次数:
111
1、file 分析文件的结构、位数 关键信息是ELF 32位可执行文件,还是动态链接 2、ldd ldd print shared object dependencies 列举出任何可执行文件所需的动态库 3、xxd xxd make a hexdump or do the reverse. 4、o ...
分类:
系统相关 时间:
2018-09-25 20:42:27
阅读次数:
291