码迷,mamicode.com
首页 > 2015年02月06日 > 全部分享
Coredata第一课 认识coredata
问题在iOS/Mac中我们有许多方式去持久化存储数据:NSUserDefault、Key chain、C语言文件接口、NSFileHandle、基础框架中的write方法、归档等等。在实际应用中,我们经常需要将这些数据按一定格式转换为对象,并且进行一定的筛选等操作然后再使用,显得不是很方便。Appl...
分类:其他好文   时间:2015-02-06 16:27:54    阅读次数:193
基础知识汇总
基础知识汇总 1.self 首先明确的是self只有在类的方法中才会有,独立的函数或方法是不必带有self的。self在定义类的方法时是必须有的,虽然在调用时不必传入相应的参数。self名称不是必须的,在python中self不是关键词,你可以定义成a或b或其它名字都可以,但是约定成俗,不要搞另类,...
分类:其他好文   时间:2015-02-06 16:28:51    阅读次数:223
Webrtc的ios框架编译
1.WebRTC的iOS框架的选择目前两个比较活跃的开源WebRTC实现.Google WebRTC:项目地址是:https://code.google.com/p/webrtc/Ericsson Research OpenWebRTC:项目地址是:https://github.com/Ericss...
分类:移动开发   时间:2015-02-06 16:25:56    阅读次数:880
oracle dmp文件的导入与导出
dmp文件的导入与导出:整库的导入导出1.从远程机器上导出expdp npmdb/npmoptr@orcl schemas=NPMDB directory=MY_DIR dumpfile=npmdb_87.dmp 参数说明schemas:可以看成是数据库名,directory:存放dmp,log文件...
分类:数据库   时间:2015-02-06 16:25:58    阅读次数:189
spring中注解的通俗解释
我们在没有用注解写spring配置文件的时候,会在spring配置文件中定义Dao层的bean,这样我们在service层中,写setDao方法,就可以直接通过接口调用Dao层,用了注解写法后,在配置文件中不用再写Dao层的bean,只需要在Dao实现类中加入@Repositorypublic Cl...
分类:编程语言   时间:2015-02-06 16:25:48    阅读次数:143
Python BeautifulSoup 简单笔记
Python BeautifulSoup 简单笔记 http://rsj217.diandian.com/post/2012-11-01/40041235132http://www.cnblogs.com/scrat/archive/2013/01/18/2866637.htmlBeautiful ...
分类:编程语言   时间:2015-02-06 16:27:22    阅读次数:160
各种容器的区别
堆、栈的区别及其应用List、Set、Collection、IteratorArrayList 的get方法会使用到索引?数组也有用到?System.out.println(c);调用toString方法迭代器ArrayList vsLinkedListHashSet vsTreeSet vsLin...
分类:其他好文   时间:2015-02-06 16:27:08    阅读次数:169
hadoop之wordCount程序理解
有篇文章http://www.cnblogs.com/xia520pi/archive/2012/05/16/2504205.html中介绍的这个接口可以实现序列化,这个WritableComparable接口跟java中的java.io.Serializable接口有什么区别?http://a12...
分类:其他好文   时间:2015-02-06 16:26:37    阅读次数:139
设计模式之禅学习笔记
现在比较熟悉的设计模式有:slf4j=》单例模式,工厂模式,门面(外观)模式工厂模式 vs 抽象工厂模式工厂模式接口,接口实现类,工厂类抽象工厂模式接口,借口实现类,工厂抽象类,具体的工厂实现类。红色句子是二者唯一的区别工厂模式 vs 建造者模式工厂模式是生产整个产品建造者模式是重点强调建造的过程模...
分类:其他好文   时间:2015-02-06 16:27:50    阅读次数:124
eafier 簡單易用 HTML、CSS 網頁編輯器(可自動插入 Tag 標籤)
翻译转来的,注意观看哦。
分类:Web程序   时间:2015-02-06 16:24:40    阅读次数:198
easyui LinkButton
http://www.zi-han.net/case/easyui/menu&button.html LinkButton - jQuery EasyUI Demo LinkButton Buttons can be created from link. enabl...
分类:其他好文   时间:2015-02-06 16:25:48    阅读次数:221
java的各个队列之间的联系和区别是什么
java的各个并发队列之间的联系和区别java.util.concurrent是在并发编程中很常用的实用工具类ArrayBlockingQueue, DelayQueue, LinkedBlockingDeque, LinkedBlockingQueue, PriorityBlockingQueue...
分类:编程语言   时间:2015-02-06 16:27:11    阅读次数:177
osg 纹理访问器
#include#include#include#include#include#include#include#include#include#include#includeclass TextureVisitor:public osg::NodeVisitor{public:TextureVis...
分类:其他好文   时间:2015-02-06 16:24:50    阅读次数:609
java 基本类型和包装类的比较
public class BoxingTest { @Test public void test1(){ String a = new String("1"); String b = new String("1"); Long c = 1...
分类:编程语言   时间:2015-02-06 16:24:41    阅读次数:148
Buy Tickets(线段树)
Buy TicketsTime Limit:4000MSMemory Limit:65536KB64bit IO Format:%I64d & %I64uSubmitStatusDescriptionRailway tickets were difficult to buy around the L...
分类:其他好文   时间:2015-02-06 16:26:29    阅读次数:138
Multi-catch
It’s relatively common for a try block to be followed by several catch blocks to handle various types of exceptions. If the bodies of several catch bl...
分类:其他好文   时间:2015-02-06 16:25:23    阅读次数:167
iframe高度自适应
1 父页面设置脚本(脚本必须在下):父页: 1 2 3 4 5 6 7 8 9 10 26 27 子页: 1 2 3 4 5 6 7 这是一个ifrmae,嵌入在http://snandy.g...
分类:其他好文   时间:2015-02-06 16:26:13    阅读次数:154
1846条   上一页 1 ... 45 46 47 48 49 50 51 ... 109 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!