码迷,mamicode.com
首页 > 2015年06月18日 > 全部分享
Android AsyncTask 详解
在Android中实现异步任务机制有两种方式,Handler和AsyncTask。Handler模式需要为每一个任务创建一个新的线程,任务完成后通过Handler实例向UI线程发送消息,完成界面的更新,这种方式对于整个过程的控制比较精细,但也是有缺点的,例如代码相对臃肿,在多个任务同时执行时,不易对...
分类:移动开发   时间:2015-06-18 21:48:09    阅读次数:140
android-custom-tab-with-viewpager
https://github.com/eltld/android-custom-tab-with-viewpager
分类:移动开发   时间:2015-06-18 21:48:37    阅读次数:121
Leetcode: Rotate Image
Rotate ImageTotal Accepted: 37958 Total Submissions: 118891You are given an n x n 2D matrix representing an image.Rotate the image by 90 degrees (cloc...
分类:其他好文   时间:2015-06-18 21:47:04    阅读次数:119
Hibernate常用方法之_插入
1、使用session的save方法进行插入 1 public void saveUser(User user){ 2 3 Session session = null; 4 Transaction transaction = null; 5 ...
分类:Web程序   时间:2015-06-18 21:45:26    阅读次数:129
描述项目的典型用户与场景
名字:小威年龄:22职业:学生收入:无正式收入知识层次和能力:大学生活/工作情况:卖东西赚外快动机,目的,困难:卖东西东西时需要计数用户比例:50%用户偏好:喜欢酷炫的东西典型场景:使用软件来计数典型描述:软件的核心功能
分类:其他好文   时间:2015-06-18 21:47:43    阅读次数:103
resin web项目的 编码问题
问题描述: 服务器迁移,迁移以后Linux系统编码由 UTF-8 变成了GBK !!! 导致在resin 中运行java web项目,调用 http 接口,解析http 接口的返回内容 如:xml 时,出现奇怪的(xml 中还有中文)编码错误。(底层使用dom4j 解析xml)错误如下:org...
分类:Web程序   时间:2015-06-18 21:47:54    阅读次数:311
OC3_dealloc
//// Dog.h// OC3_dealloc//// Created by zhangxueming on 15/6/18.// Copyright (c) 2015年 zhangxueming. All rights reserved.//#import @interface Dog ...
分类:其他好文   时间:2015-06-18 21:46:54    阅读次数:105
树状数组 要一点思考
一开始块排敲错两次 1 program hehe; 2 var 3 t,n,m,i,j,k:longint; 4 c:array[0..1000000] of longint; 5 pre,next,a,x:array[0..50005] of longint; 6 ans,p,z,y:ar...
分类:编程语言   时间:2015-06-18 21:46:33    阅读次数:133
周末了,也给心灵放放假
周末 心灵 放假 人生 深度 高度 意义
分类:其他好文   时间:2015-06-18 21:47:01    阅读次数:127
机器学习傻瓜的深入研究
什么是机器学习?传统的教科书将被用于大量的高等数学,线性代数。概率论。统计数据和你拒之门外的其他信息。博主在这里我决定用一个非常easy样品做任何你高深的数学知识来理解。 在写机器学习之前,我们来举个样例。如果你是个古代的国王。那里没有现代的科技,你想找个预报天气比較准的人来帮你预报天气。你要怎么....
分类:其他好文   时间:2015-06-18 21:46:01    阅读次数:107
Dynamic Programming | Set 1 (Overlapping Subproblems Property)
动态规划是这样一种算法范式:将复杂问题划分为子问题来求解,并且将子问题的结果保存下来以避免重复计算。如果一个问题拥有以下两种性质,则建议使用动态规划来求解。 1 重叠子问题(Overlapping Subproblems) 2 最优子结构(Optimal Substructure) 1 重叠子问题 ...
分类:移动开发   时间:2015-06-18 21:45:01    阅读次数:151
python下的web服务器模块
python下的web服务模块有三种: BaseHTTPServer: 提供基本的Web服务和处理器类,分别是HTTPServer和BaseHTTPRequestHandler SimpleHTTPServer: 包含执行GET和HEAD请求的SimpleHTTPRequestHandler类 .....
分类:编程语言   时间:2015-06-18 21:46:29    阅读次数:346
iOS iOS8注册通知
http://blog.csdn.net/apple_app/article/details/39228221极光推送 action设置 http://docs.jpush.cn/display/dev/IOS+8+UIUserNotificationSettings一直更新了iOS8,但是一直没有...
分类:移动开发   时间:2015-06-18 21:44:33    阅读次数:241
Python学习过程中知识误区总结
a**b==a*b+a字符串 'abc' 3 * 'ab'== 'ababab' 'a'+str(123) == 'a123'len('abc') ==3
分类:编程语言   时间:2015-06-18 21:46:29    阅读次数:158
ManyToMany【项目随笔】关于异常object references an unsaved transient instance
在保存ManyToMany 时出现异常:org.springframework.dao.InvalidDataAccessApiUsageException: org.hibernate.TransientObjectException: object references an unsaved t...
分类:其他好文   时间:2015-06-18 21:46:08    阅读次数:356
send,recv,sendto,recvfrom
send功能 int send( SOCKET s, const char FAR *buf, int len, int flags ); 不论是客户还是server应用程序都用send函数来向TCP连接的还有一端发送数据。客户程序一般用send函数向server发送请求。而server则通经常使用...
分类:其他好文   时间:2015-06-18 21:45:36    阅读次数:102
In Java, will the code in the finally block be called and run after a return statement is executed?
In Java, will the code in the finally block be called and run after a return statement is executed?
分类:编程语言   时间:2015-06-18 21:45:47    阅读次数:116
2322条   上一页 1 ... 18 19 20 21 22 23 24 ... 137 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!