码迷,mamicode.com
首页 >  
搜索关键字:example    ( 17798个结果
PHP_2014.5.22的总结
1:static:定义静态方法和属性,也可以用于定义静态变量以及后期静态变量2:extends:继承 例:\n" ; } } //儿子继承父亲类 class Bextends A { function example (){ e...
分类:Web程序   时间:2014-05-26 14:54:02    阅读次数:250
汇编语言-整型处理,利用堆栈原样输出
要求:输入任意一个整型数字字符串,并将整型原样输出。这个子程序主要用于格式化排版,比output直接输出字符串有很大美观性。 1 ; Example assembly language program -- 2 ; Author: Karllne 3 ; Date: revised 05/20...
分类:编程语言   时间:2014-05-26 13:38:13    阅读次数:371
First Missing Positive
Given an unsorted integer array, find the first missing positive integer.For example,Given[1,2,0]return3,and[3,4,-1,1]return2.Your algorithm should ru...
分类:其他好文   时间:2014-05-26 09:43:14    阅读次数:220
Android重写ViewPager修改滑动灵敏度
使用ViewPager作为一个页面进行切换,里面可以存放很多View,但有时在操作View时不小心滑动一下就有可能跳到下一页,这并不是我们想要的,这里就需要重写ViewPager修改它的滑动条件 效果图 程序目录结构 BTViewPager.java package com.example.viewpagerdemo; import android.content.Con...
分类:移动开发   时间:2014-05-23 02:24:13    阅读次数:297
赵雅智_handler
package com.example.android_http; import java.io.InputStream; import java.net.HttpURLConnection; import java.net.URL; import android.app.Activity; import android.os.Bundle; import android.os.Handler...
分类:其他好文   时间:2014-05-23 01:41:36    阅读次数:253
LeetCode: Permutations [045]
【题目】 Given a collection of numbers, return all possible permutations. For example, [1,2,3] have the following permutations: [1,2,3], [1,3,2], [2,1,3], [2,3,1], [3,1,2], and [3,2,1]. 【题意】 给定一个数组,生成所有的全排列 【思路】 递归,类DFS...
分类:其他好文   时间:2014-05-23 01:08:26    阅读次数:194
安卓开机自启动demo
package com.example.openstart; import android.app.KeyguardManager; import android.app.KeyguardManager.KeyguardLock; import android.content.BroadcastReceiver; import android.content.Context; import and...
分类:移动开发   时间:2014-05-23 00:05:56    阅读次数:281
浅析变量的作用域和生存周期的区别
作用域:在一定的空间范围内能够使用。 生存周期:在一定的时间范围内存在。 example: int f(int x){ static int k=0; x+=k++; return x; } 求f(f(2)); 这个结果是2,其中上例中k是一个静态局部变量,它的作用域就是本函数体内部,而它的生存周期确实一直有效,也就是说该变量一旦声明了之后,在内存开辟了一个单元用来存放它,只有在...
分类:其他好文   时间:2014-05-22 22:45:05    阅读次数:261
LeetCode: Permutations II [046]
【题目】 Given a collection of numbers that might contain duplicates, return all possible unique permutations. For example, [1,1,2] have the following unique permutations: [1,1,2], [1,2,1], and [2,1,1]. 【题意】 给定一个候选数集合,候选集中可能存在重复数,返回所有的排列 【思路】 ...
分类:其他好文   时间:2014-05-22 17:32:17    阅读次数:247
在读取图片的时候压缩减小内存开支
这个问题真是把我折腾的够呛: package com.example.tupian; import java.io.IOException; import java.io.InputStream; import java.net.URL; import android.os.Bundle; import android.os.Handler; import android.os.Messag...
分类:其他好文   时间:2014-05-22 17:03:39    阅读次数:241
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!