码迷,mamicode.com
首页 > 2015年11月24日 > 全部分享
OC内存管理小结
初始化(alloc/init)的对象,需要释放,需要(release)释放它。如:NSMutableArray *aArray = [[NSArray alloc] init];// 需要释放[aArray release];// retain或者copy 后 也要release内存管理无外乎ARC...
分类:其他好文   时间:2015-11-24 20:24:05    阅读次数:128
swfit中的一些放弃的我们需要注意的
1.swift中不再使用define这种方式定义宏,而是采用全局常量的方式定义。比如 let URL "www.xxx.com/1.jpg"2.swift中没有了performselector这类的方法(网上解释的说是swift不是基于消息机制的,我反正没明白为什么).所以在做相应的功能时还是使用g...
分类:其他好文   时间:2015-11-24 20:22:54    阅读次数:141
1.1编程基础之输入输出-07:输出浮点数
07:输出浮点数#includeint main(){ double i; scanf("%lf",&i); printf("%f\n",i); printf("%.5f\n",i); printf("%e\n",i); printf("%g\n",i); return 0;} 总时间限制:100....
分类:其他好文   时间:2015-11-24 20:24:55    阅读次数:325
在windows下安装mysql5.6.24版本
链接地址:http://jingyan.baidu.com/article/90bc8fc8615c99f653640cc4.html工具/原料官网下载安装包系统需装net 4.0及以上运行库百度经验:jingyan.baidu.com方法/步骤双击 mysql-installer-communit...
分类:数据库   时间:2015-11-24 20:23:05    阅读次数:234
快速排序函数代码
void quickSort( int left, int right, int *arr){ int i, j, temp; if ( left >= right ) return; temp = arr[left]; i = left; j = right; while ( i != j ) {...
分类:编程语言   时间:2015-11-24 20:24:51    阅读次数:124
在eclipse的工具栏中不显示Android SDK and AVD Manager
在eclipse的工具栏上显示SDK和AVD
分类:移动开发   时间:2015-11-24 20:23:51    阅读次数:210
java文件输入输出流学习笔记
--java创建文件 File file=new File("java.txt");//此时java工作空间根目录下不一定存在java.txt//判断是否存在不存在调用File类的createNewFile方法创建java.txtFile files=new File("E:\\war3"); i....
分类:编程语言   时间:2015-11-24 20:24:19    阅读次数:139
PAT1045—— 快速排序
著名的快速排序算法里有一个经典的划分过程:我们通常采用某种方法取一个元素作为主元,通过交换,把比主元小的元素放到它的左边,比主元大的元素放到它的右边。 给定划分后的N个互不相同的正整数的排列,请问有多少个元素可能是划分前选取的主元?例如给定N = 5, 排列是1、3、2、4、5。则:1的左边没有元素...
分类:编程语言   时间:2015-11-24 20:21:18    阅读次数:169
野兽的Angular Api 学习、翻译及理解 - - $location 和 $window
野兽的ng api学习 --$location 和 $window$location$location服务解析浏览器地址中的url(基于window.location)并且使url在应用程序中可用。将地址栏中的网址的变化反映到$location服务和$location的变化反映到浏览器地址栏。公开浏...
分类:Windows程序   时间:2015-11-24 20:22:47    阅读次数:194
简单select
1 #include 2 using namespace std; 3 4 #include 5 #pragma comment(lib, "ws2_32.lib") 6 7 #include "incl/pthread.h" 8 #pragma comment(lib, ...
分类:其他好文   时间:2015-11-24 20:21:30    阅读次数:220
Activiti系列:带有serviceTask的或者定时启动任务的流程部署失败的原因分析
在将两个带有serviceTask任务的流程部署到数据库的时候发现无法导入,最终分析出如下问题:1)流程1是打算让定时启动事件可以每小时触发一次由于原来是用R/2015-11-01T01:00:00/P1M来测试是Ok的,最后测试完打算你拷贝到另外项目上部署的时候,打算改为每小时执行一次,于是就顺手...
分类:其他好文   时间:2015-11-24 20:22:54    阅读次数:191
最小联结词组
This is only ok in Binary Logic.There are 16 pairs Minimal association phrases. 1 not (a or b) , 2 not (a => b) , not b , 3 not b , not (b => a) , ...
分类:其他好文   时间:2015-11-24 20:20:25    阅读次数:1010
HDU 1013 Digital Roots
Digital RootsTime Limit: 2000/1000 MS (Java/Others)Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 62631Accepted Submission(s): 19453Pro...
分类:其他好文   时间:2015-11-24 20:20:04    阅读次数:191
select读写
#include using namespace std;#ifdef WINDOWS_SOCK#include #pragma comment(lib, "ws2_32.lib")#define socklen_t int#else#include #include #include #inclu...
分类:其他好文   时间:2015-11-24 20:21:29    阅读次数:193
jdbc初学者连接
创建properties文件jdbc.properties文件内容:driver=com.mysql.jdbc.Driver//驱动目录url=jdbc:mysql://localhost:3306/dangdang//username=rootpassword=root /密码建立类LoadPr....
分类:数据库   时间:2015-11-24 20:19:50    阅读次数:181
MySQL修改root密码的多种方法
注意命令行操作:方法1: 用SET PASSWORD命令 mysql -u root mysql> SET PASSWORD FOR 'root'@'localhost' = PASSWORD('newpass');方法2:用mysqladmin mysqladmin -u root pass...
分类:数据库   时间:2015-11-24 20:21:51    阅读次数:171
Python一般错误
1. IndentationError: unindent does not match any outer indentation level格式对齐的问题。Python对空格和Tab有严格区别
分类:编程语言   时间:2015-11-24 20:21:46    阅读次数:142
1008条   上一页 1 ... 15 16 17 18 19 20 21 ... 60 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!