码迷,mamicode.com
首页 >  
搜索关键字:stateless static nat    ( 52874个结果
java之冒泡排序
/** * Created by rabbit on 2014-5-9. */ class ArrayTest2 { public static void BubbleSort(int [] arr) //创建冒泡排序方法 { for (int x=0;x<arr.length-1;x++) ...
分类:编程语言   时间:2014-05-10 06:39:45    阅读次数:355
VIEWSTATE
禁用viewstate只在前台加句VIEWSTATE中便可,但只要在form中有runnat=server就不能完全禁用掉
分类:其他好文   时间:2014-05-10 06:37:21    阅读次数:233
HttpAsyncClient的连接池使用
代码示例 public static void main(String[] args) throws Exception { ConnectingIOReactor ioReactor = new DefaultConnectingIOReactor(); Pool...
分类:其他好文   时间:2014-05-10 06:35:51    阅读次数:942
Java中main函数深入理解
最开始学习Java,接触到的应该就是main函数:Public static void main(String args[]){}但是main函数为什么要这样写,又隐藏了哪些被忽视的知识,今天深入学习一下。关键字分析 最直观的就是逐个关键字分析,1.public2.static3.参数args[]....
分类:编程语言   时间:2014-05-10 05:58:44    阅读次数:305
(转)JS中innerHTML,innerText,value
原文:http://holysonll.blog.163.com/blog/static/21413909320134111054352/JS中innerHTML,innerText,value2013-05-11 11:24:49|分类: JS与JQ |标签:.innerhtml.valueinn...
分类:Web程序   时间:2014-05-10 05:35:01    阅读次数:365
代理模式(Proxy)
参考资料《大话设计模式》using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ds_proxy{ class Program { static ...
分类:其他好文   时间:2014-05-10 05:15:33    阅读次数:290
java语言实现快速排序的两种方式
方法一:public class QuickSortExp1{ public static void main(String[] args){ int[] sortArray = new int[]{5,7,4,2,9,8,3,6}; System.out.println("before sor.....
分类:编程语言   时间:2014-05-10 05:08:46    阅读次数:496
java 语言实现选择排序
public class TestSelectSort{ public static void main(String[] args){ int[] sortArray = new int[]{5,7,4,2,9,8,3,6}; System.out.println("before sortin.....
分类:编程语言   时间:2014-05-10 05:04:52    阅读次数:322
java 语言实现插入排序
public class InsertSort{ public static void main(String[] args){ int[] sortArray = new int[]{5,7,4,2,9,8,3,6}; System.out.println("before sorting ,t.....
分类:编程语言   时间:2014-05-10 03:13:15    阅读次数:342
Android--Bitmap处理、圆角、圆形
/** * 转换图片成圆形 * * @param bitmap * 传入Bitmap对象 * @return */ public static Bitmap toRoundBitmap(Bitmap bitmap)...
分类:移动开发   时间:2014-05-10 02:46:10    阅读次数:436
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!