码迷,mamicode.com
首页 >  
搜索关键字:prefix    ( 4726个结果
pch文件小常识
?项目的Supporting files文件夹下面有个“工程名-Prefix.pch”文件,也是一个头文件??pch头文件的内容能被项目中的其他所有源文件共享和访问??一般在pch文件中定义一些全局的宏??在pch文件中添加下列预处理指令,然后在项目中使用Log(…)来输出日志信息,就可以在发布应用...
分类:其他好文   时间:2015-04-10 22:22:24    阅读次数:111
leetcode-14 Longest Common Prefix
?? 问题描述:Write a function to find the longest common prefix stringamongst an array of strings. 问题分析: 代码: public class Solution { public String longestCommonPrefix(String[] strs) { ...
分类:其他好文   时间:2015-04-10 22:11:48    阅读次数:106
MWeb 1.2 版更新说明和用 wkhtmltopdf 生成带目录的 PDF 和自定预览 CSS
新增可选择在输入时是否自动插入列表编号,可以在 Preferences --> General --> Auto insert list and blockquote prefix 开启和关闭。分享功能的 Copy as image、Save as image、Save as PDF 等现在统一都用...
分类:Web程序   时间:2015-04-10 21:56:31    阅读次数:514
ImportError: No module named _ssl
编译安装python2.7后无法导入ssl包解决办法:下载地址:http://www.openssl.org/source/openssl-1.0.2a.tar.gz安装openssl:#tar-xzvfopenssl-1.0.2a.tar.gz #./config--prefix=/usr/local--openssldir=/usr/local/openssl #make&&makeinstall重新编译python#viPytho..
分类:其他好文   时间:2015-04-10 20:28:52    阅读次数:498
ImportError: No module named _sqlite3
编译安装python,无法导入sqlite3包解决办法:1.安装sqlite:#wgethttp://www.sqlite.org/sqlite-3.6.16.tar.gz #tar-xzvfsqlite-3.6.16.tar.gz #cdsqlite-3.6.16 #./configure--prefix=/usr/local/sqlite3 #make&&makeinstall2.重新编译python:#viPython-2.7.9/setup.py..
分类:数据库   时间:2015-04-10 20:27:30    阅读次数:203
linux下安装Python-2.7.9
1.下载安装包:#wget2.编译安装#tar-xzvfPython-2.7.9.tgz #cdPython-2.7.9 #./configure--prefix=/usr/local/python2.7 #make&&makeinstall3.更新版本#mv/usr/bin/python/usr/bin/python_old #ln-s/usr/local/python2.7/bin/python/usr/bin/python
分类:编程语言   时间:2015-04-10 20:26:24    阅读次数:148
二)CodeIgniter源码分析之CodeIgniter.php
$assign_to_config['subclass_prefix'])); }/* * ------------------------------------------------------ * Set a liberal script execution time limit * ...
分类:Web程序   时间:2015-04-10 19:41:04    阅读次数:211
XCode6 生成prefix.pch文件
新建完成以后第一步第二步, $(SRCROOT)/项目名称/PrefixHeader.pch
分类:其他好文   时间:2015-04-10 17:07:54    阅读次数:84
一些编译php时的configure 参数
一些编译php时的configure 参数 ./configure –prefix=/usr/local/php php 安装目录 –with-apxs2=/usr/local/apache/bin/apxs –with-config-file-pa...
分类:Web程序   时间:2015-04-10 12:54:29    阅读次数:125
Centos6.6安装apache2.4
安装apr请参考: http://www.cnblogs.com/yuzhaokai0523/p/4382974.html1安装httpd-2.4.10.tar.gztar-zxvfhttpd-2.4.10.tar.gzcdhttpd-2.4.10./configure--prefix=/usr/l...
分类:Web程序   时间:2015-04-09 15:19:17    阅读次数:144
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!