码迷,mamicode.com
首页 > 2014年10月18日 > 全部分享
Java总结之容器
Java容器...
分类:编程语言   时间:2014-10-18 14:07:12    阅读次数:264
4.Maven概念模型,maven的生命周期,Maven坐标,依赖管理(依赖范围,依赖声明),仓库管理,私服概念
?? 1 maven概念模型 2 maven的生命周期,项目构建过程 Maven生命周期就是为了对所有的构建过程进行抽象和统一 包括项目清理,初始化,编译,打包,测试,部署等几乎所有构建步骤   Maven有“三套”相互独立的生命周期,而且相互独立,这三套生命周期分别是: Maven三大生命周期 ...
分类:其他好文   时间:2014-10-18 14:05:05    阅读次数:231
Latex Error cannot determine the size of graphic 报错的解决办法
Latex Error cannot determine the size of graphic 报错的解决办法                           插入jpg文件老是会报错... 追究了半天,原来是编译的命令又问题,不应该使用 latex ./hello.tex 而应该使用 pdflatex ./hello.tex 下面是我用的测...
分类:其他好文   时间:2014-10-18 14:06:22    阅读次数:407
Transmitters(简单几何)
Transmitters Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 4617   Accepted: 2468 题目链接:http://poj.org/problem?id=1106 Description In a wireless network...
分类:其他好文   时间:2014-10-18 14:07:30    阅读次数:194
java 通过Apache poi导出excel代码demo实例
java 通过Apache poi导出excel代码demo实例 源代码下载地址:http://www.zuidaima.com/share/1550463470062592.htm...
分类:编程语言   时间:2014-10-18 14:06:30    阅读次数:250
手机无法连接电脑的手机助手
手机连接电脑的小技巧...
分类:移动开发   时间:2014-10-18 14:05:29    阅读次数:196
C语言函数--E
函数名: ecvt 功 能: 把一个浮点数转换为字符串 用 法: char ecvt(double value, int ndigit, int *decpt, int *sign); 程序例: #include #include #include int main(void) { char *string; double value; int...
分类:编程语言   时间:2014-10-18 14:06:19    阅读次数:178
POJ 3616 Milking Time 挤奶问题,带权区间DP
题目链接:POJ 3616 Milking Time Milking Time Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 4837   Accepted: 2034 Description Bessie is such a hard-...
分类:其他好文   时间:2014-10-18 14:05:19    阅读次数:228
Android 自动化测试(4)<uiautomator> 单元测试
做过java单元测试的同学,使用Android的单元测试比较简单,参见 如何进行Android单元测试,采用这种方式,业务逻辑上的测试在很多情况下,就已经解决了。还有一个明显的缺陷就是测试界面不方便。而对于android应用程序来说,界面占据了很重要的一个部分。 这个时候可以使用uiautomator.jar这个类库。 这里我不详细讲具体的Android 的 uiautomator类库怎么使用。具体的使用可以参见 Android UI Testing (英文版), 和 Android uiau...
分类:移动开发   时间:2014-10-18 14:05:47    阅读次数:218
java的Future用法
首先,Future是一个接口,该接口用来返回异步的结果。 package com.itbuluoge.mythread; import java.util.ArrayList; import java.util.concurrent.Callable; import java.util.concurrent.ExecutionException; import java.util.concur...
分类:编程语言   时间:2014-10-18 14:06:15    阅读次数:243
MyEclipse下的web project 怎么部署到tomcat目录下的webapps
MyEclipse下的web project 怎么部署到tomcat目录下的webapps...
分类:移动开发   时间:2014-10-18 14:05:26    阅读次数:197
POJ 3176 Cow Bowling 保龄球 数塔问题 DP
题目链接:POJ 3176 Cow Bowling Cow Bowling Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 14044   Accepted: 9310 Description The cows don't use actu...
分类:其他好文   时间:2014-10-18 14:06:11    阅读次数:228
c语言函数--F
函数名: fabs 功 能: 返回浮点数的绝对值 用 法: double fabs(double x); 程序例: #include #include int main(void) { float number = -1234.0; printf("number: %f absolute value: %f\n", number, fabs(n...
分类:编程语言   时间:2014-10-18 14:04:43    阅读次数:278
求二叉树的镜像
求二叉树的镜像: void MirrorBiTree(BiTree* pNode) {   if(pNode == NULL||pNode->leftChild ==NULL || pNode->rightChild ==NULL)      return ;      ListNode* temp;     temp = pNode->leftChild;    ...
分类:其他好文   时间:2014-10-18 14:03:32    阅读次数:170
java多线程设置优先级
package com.itbuluoge.mythread; class SimpleThread extends Thread { private int priority; public SimpleThread(int i) { priority=i; } public void run() { Thread.currentThread().setPriority(p...
分类:编程语言   时间:2014-10-18 14:03:11    阅读次数:172
请实现一个函数,把字符串中的每个空格替换成“%20”,例如输入 “We are Happly。” 则输出“we%20are%20happy。”
请实现一个函数,把字符串中的每个空格替换成“%20”,例如输入 “We are Happly。”  则输出“we%20are%20happy。” void ReplaceBlank(char String[],int length) {  //originalLength 为字符串string的实际长度  //length字符串的总容量  int originalLen...
分类:移动开发   时间:2014-10-18 14:02:43    阅读次数:209
POJ 2385 Apple Catching 接苹果 DP
题目链接:POJ 2385 Apple Catching Apple Catching Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 7858   Accepted: 3846 Description It is a little kno...
分类:移动开发   时间:2014-10-18 14:04:29    阅读次数:294
1401条   上一页 1 ... 46 47 48 49 50 51 52 ... 83 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!