public View getView(int position, View
convertView, ViewGroup parent) { View view = inflater.inflate(R.layout.gv_item,
null); TextView tv = (TextV...
分类:
其他好文 时间:
2014-05-10 00:41:22
阅读次数:
283
1. 标准类型 Integer,Boolean, Long integer, Floating
point real number, Complex number, String, List, Tuple, Dictionary 其他内建类型: 类型,
Null对象(None) 文件,集合,函数.....
分类:
其他好文 时间:
2014-05-10 00:20:30
阅读次数:
336
要点:AsyncTask主要用于short operations (a few seconds at
the most.)。如果你需要“running for long periods of time”,官方推荐使用various APIs provided
by the java.util.con...
分类:
其他好文 时间:
2014-05-09 23:46:38
阅读次数:
304
Action(){ char dest[500]=""; char
src[500]="%25E9%25AB%2598%25E4%25B8%25AD"; char oldstr[100]="%"; char
newstr[100]="**"; char * position; int strin.....
分类:
其他好文 时间:
2014-05-09 20:43:15
阅读次数:
412
参考资料:http://blog.csdn.net/vipzjyno1/article/details/24577023
非常感谢这个兄弟!先查看这2个方法的源码:scrollTo: 1 /** 2 * Set the scrolled position of your view.
Th...
分类:
其他好文 时间:
2014-05-09 15:44:10
阅读次数:
277
java定时任务,每天定时执行任务。以下是这个例子的全部代码。public class
TimerManager { //时间间隔 private static final long PERIOD_DAY = 24 * 60 * 60 *
1000; public TimerManager() {....
分类:
编程语言 时间:
2014-05-09 15:43:37
阅读次数:
389
unsigned int 0~4294967295int
2147483648~2147483647unsigned long 0~4294967295long 2147483648~2147483647long
long的最大值:9223372036854775807long long的最小值:-...
分类:
其他好文 时间:
2014-05-09 15:34:30
阅读次数:
210
public class InitServlet extends HttpServlet {
private static final long serialVersionUID = -
5826096764263027718L;
public void destroy() {
super.destroy();
}
public void init() throws Servl...
分类:
编程语言 时间:
2014-05-09 14:45:06
阅读次数:
324
通过Mahout构建推荐系统时,如果我们需要加入某些过滤规则(比如:item的创建时间在一年以内),则需要用到IDRescorer接口,该接口源码如下:
package org.apache.mahout.cf.taste.recommender;
/**
*
* A {@link Rescorer} which operates on {@code long...
分类:
其他好文 时间:
2014-05-09 14:09:08
阅读次数:
369
剑指offer上的第就题,简单题,在九度OJ上测试通过。
主要注意以下几点:
1、用非递归实现,递归会超时
2、结果要用long long保存,不然会发生结果的溢出,从而得到负值
3、如果是在VC++6.0下编译的,long long是illegal的,要用_int64代替,同时输出的转化以字符也要用%l64d代替%lld...
分类:
其他好文 时间:
2014-05-09 13:55:58
阅读次数:
436