码迷,mamicode.com
首页 >  
搜索关键字:map hashmap linkedhashmap map.entry collections 可变参数    ( 41027个结果
16 ListView
package mars.listview;import java.util.ArrayList;import java.util.HashMap;import android.app.ListActivity;import android.os.Bundle;import android.view...
分类:其他好文   时间:2014-04-30 20:23:44    阅读次数:474
利用反射将任意元素类型 的 List 转为 DataTable
List to DataTable. 利用反射,将任意元素类型 的 List 转为 DataTable.Using System.Collections;Using System.Reflection; public static DataTable ToDataTable(IList...
分类:其他好文   时间:2014-04-30 20:06:11    阅读次数:422
java.lang.IllegalStateException: Expected a string but was BEGIN_ARRAY at line 1 column 296
先贴代码public class ListDataRequest extends JsonRequest> {public ListDataRequest(int method, String url,Map contentBody, Listener> listener, ErrorListene...
分类:编程语言   时间:2014-04-30 17:32:30    阅读次数:740
wpf 进度条 下拉
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading;using System.Threading.Tasks;using...
分类:其他好文   时间:2014-04-30 14:32:24    阅读次数:514
Http协议之content
用android 通过http协议提交数据至服务器 content的内容代码如下:private static JSONObject connUpload(String baseUrl, Map params, String content) throws IOException, JSONExce...
分类:其他好文   时间:2014-04-30 14:06:47    阅读次数:490
使用NHibernate(10) -- 补充(inverse && cascade)
1,inverse属性的作用:只有集合标记(set/map/list/array/bag)才有invers属性;以set为例,set的inverse属性决定是否把对set的改动反应到数据库中去,inverse=false(反应),inverse=true(不反应);默认值是false;one-to-...
分类:系统相关   时间:2014-04-30 13:21:33    阅读次数:525
C# 时钟控件
//控件名:myNewClock//作者:刘典武//时间:2011-06-10using System;using System.Collections.Generic;using System.ComponentModel;using System.Drawing;using System.Dat...
分类:其他好文   时间:2014-04-29 17:21:46    阅读次数:538
【HDOJ】2157 How many ways??
矩阵乘法,用DP做各种wa,后来发现原因了。 1 #include 2 #include 3 4 typedef struct { 5 int map[20][20]; 6 } matrix_st; 7 8 matrix_st res, org; 9 int n, m;10 11 m...
分类:其他好文   时间:2014-04-29 11:26:46    阅读次数:418
HDU-1081-To The Max
求最大连续子矩阵和问题可以转化为求最大连续子序列问题map[i][j]=map[0][j]+map[1][j]+...+map[i][j]即将第j 列前 i 行的值压缩到map[i][j]求第 x 行到第 y 行之间最大连续矩阵和,就将 x~y 行同列元素当成一个元素处理这样就将 x~y 行压缩成了...
分类:其他好文   时间:2014-04-29 11:13:45    阅读次数:318
java根据标点英文分词
最近学习java字符串部分,用正则表达式做了一个简单的统计单词出现次数的小程序,目前只能统计英文。整个程序包括三个包,分别为output,run,wordcountwordCount包执行单词统计逻辑的工具包,使用HashMap存储某个字符串出现的次数。setPattern用来在类外部设置不同的正则...
分类:编程语言   时间:2014-04-29 10:38:46    阅读次数:594
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!