辞职回家打算自学IOS开发,就在借个地方记录一下Day-1 手动内存管理 主要内容:release retain必须配对好,不然会占用内存 慢慢积累导致错误一旦内存占用超过40m 45m时分别发生警告,一旦超过120m 系统将kill你的app 发生闪退主要要防止发生的问题:1.野...
分类:
移动开发 时间:
2014-08-26 13:29:56
阅读次数:
231
小猪的Android入门之路 Day 7 part 4
Android的数据存储与访问之——ContentProvider(内容提供者)
本节引言:
在前面的学习中,我们已经学习了一些存储数据的方式,而这些都是可以共享的,比如文件,我们可以把操作
模式设置为Context.MODE_WORLD_READABLE 或Context.MODE_WORLD_WRITEABLE,其他应用
就可以访问文件进行读写操作了;而使用SharedPreference也是可以进行共享的,同样是设置权限!而使用
ContentP...
分类:
移动开发 时间:
2014-08-26 00:35:35
阅读次数:
355
Description
For the daily milking, Farmer John's N cows (1 ≤ N ≤ 50,000) always line up in the same order. One day Farmer John decides to organize a game of Ultimate Frisbee with some of the cows. ...
分类:
其他好文 时间:
2014-08-25 23:01:45
阅读次数:
508
jQuery遍历table中的tr td并获取td中的值
$(function(){
$("#tableId tr").find("td").each(function(){
var year = $("#year").val();
var month = $("#month").val();
var day = $(this).tex...
分类:
Web程序 时间:
2014-08-25 22:53:25
阅读次数:
242
LeetCode: Best Time to Buy and Sell StockSay you have an array for which the ith element is the price of a given stock on day i.If you were only permi...
分类:
其他好文 时间:
2014-08-25 22:35:34
阅读次数:
261
Little Hasan loves to play number games with his friends.One day they were playing a game where one of them will speak out a positive numberand the others have to tell the sum of its factors. The firs...
分类:
其他好文 时间:
2014-08-25 11:57:04
阅读次数:
235
实验 直接上代码,看结果 实体类 [Flags] public enum FlagsEnum { Day = 1, Night = 2 } public class EntityWithEnum { public int ID { get; set; } public FlagsEnum Valid...
分类:
其他好文 时间:
2014-08-24 20:42:23
阅读次数:
216
1. 最小花费(money.pas/c/cpp)问题描述在n个人中,某些人的银行账号之间可以互相转账。这些人之间转账的手续费各不相同。给定这些人之间转账时需要从转账金额里扣除百分之几的手续费,请问A最少需要多少钱使得转账后B收到100元。输入第一行输入两个正整数n,m,分别表示总人数和可以互相转账的...
分类:
其他好文 时间:
2014-08-23 13:54:50
阅读次数:
129
apscheduler.triggers.cronAPITrigger alias for add_job(): cronclass apscheduler.triggers.cron.CronTrigger(year=None, month=None, day=None, week=None, d...
代码如下:$smarty = new Smarty; $smarty->assign('yesterday', strtotime('-1 day')); $smarty->display('index.tpl'); index.tpl: {$smarty.now|date_format} {$sm...
分类:
其他好文 时间:
2014-08-22 12:22:36
阅读次数:
218