码迷,mamicode.com
首页 >  
搜索关键字:current min is    ( 28064个结果
Android实现后台长期监听时间变化
1.首先我们的目的是长期监听时间变化,其实应用程序退出。 通过了解我们知道注册ACTION_TIME_TICK广播接收器可以监听系统事件改变,但是 查看SDK发现ACTION_TIME_TICK广播事件只能动态注册: Broadcast Action: The current time has changed. Sent every minute. You can not receive t...
分类:移动开发   时间:2014-06-05 08:35:13    阅读次数:285
eclipse git 报错:the current branch is not configured for pull No value for key branch.xxx.merge found
eclipse git 报错:the current branch is not configured for pull No value for key branch.xxx.merge found in configuration 如图: 这是因为 在用gui创建分支的时候 config文件没有创建branch 在config文件加上 [branch "xxx"] ...
分类:系统相关   时间:2014-06-05 05:15:19    阅读次数:326
动画渐变兼容各个浏览器
.destination1 .current{ display:block; animation:danru 2s linear infinite; -webkit-animation:danru 2s linear alternate ; -moz-animatio...
分类:其他好文   时间:2014-06-04 20:53:25    阅读次数:332
leetcode:String to Integer (atoi)
问题 输入:一个表示数字的字符串,需要考虑不同的输入形式。 输出:对应的整数 特殊输入形式: 1.输入开始几个字符为空格 2.考虑正负号 3.数字字符不属于[0,9]时,输出当前结果 4.字符串代表的数字大于INT_MAX或者小于INT_MIN时输出INT_MAX或者INT_MIN。 class Solution { // out of range...
分类:其他好文   时间:2014-06-03 06:30:14    阅读次数:314
C语言学习_test1
1.从键盘上输入5个数,输出最大的、最小的元素以及他们的下标 #include int main(void) { int i, j, k, max, min; int a[10] = {0}; printf("input number:"); for(i = 0; i scanf("%d", &a[i]); max = min = a[0]; j = k = 0; ...
分类:编程语言   时间:2014-06-03 02:43:47    阅读次数:241
hibernate 使用C3P0数据源
1.导入jar包: hibernate-release-4.3.5.Final/lib/optional/*.jar 2.加入配置: 10 5 2 2000 2000 10 hibernate.c3p0.max_size: 数据库连接池的最大连接数 hibernate.c3p0.min_size: ...
分类:系统相关   时间:2014-06-03 00:53:00    阅读次数:343
【HDOJ】1394 Minimum Inversion Number
逆序数的性质。1. 暴力解 1 #include 2 3 #define MAXNUM 5005 4 5 int a[MAXNUM]; 6 7 int main() { 8 int n; 9 int i, j, sum, min;10 11 while (scanf(...
分类:其他好文   时间:2014-05-31 07:50:50    阅读次数:170
Java日期转换SimpleDateFormat格式大全(转)
24小时制时间显示:public class Datetime { public static void main(String args[]){ java.util.Date current=new java.util.Date(); java.text....
分类:编程语言   时间:2014-05-30 20:21:37    阅读次数:357
SQL总结(一)基本查询
本文希望通过简单的总结,把常用的查询方法予以总结,希望能够明确在心主要涵盖:模糊查询、排序、分组、集合函数、TOP、Case包括:Between、In、Like、And、Or、Order by包括:Group by、Distinct、MAX\MIN、Avg、Count、Sum、Having、Top、...
分类:数据库   时间:2014-05-29 23:13:46    阅读次数:456
vim 查看某字符串出现的次数
http://blog.chinaunix.net/uid-23577393-id-1751983.htmlTo count how often any pattern occurs in the current buffer use the substitutecommand and add th...
分类:其他好文   时间:2014-05-29 17:37:03    阅读次数:217
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!