内容从网上查的,自己经过实践整理了一份。 需要两个文件,分别为net.sf.jadclipse_3.3.0.jar和jad.exe,文件地址http://pan.baidu.com/s/1o6mLYhO。 1,将net.sf.jadclipse_3.3.0.jar放入eclipse插件文件中,例如....
分类:
系统相关 时间:
2015-01-05 09:20:56
阅读次数:
252
最近要做一个项目涉及到C#中压缩与解压缩的问题的解决方法,大家分享。这里主要解决文件夹包含文件夹的解压缩问题。)下载SharpZipLib.dll,在http://www.icsharpcode.net/OpenSource/SharpZipLib/Download.aspx中有最新免费版本,“As...
分类:
其他好文 时间:
2015-01-05 09:19:20
阅读次数:
161
https://oj.leetcode.com/problems/merge-sorted-array/http://blog.csdn.net/linhuanmars/article/details/19712333publicclassSolution{
publicvoidmerge(intA[],intm,intB[],intn){
//SolutionA:
//merge_NoExtraSpace(A,m,B,n);
//SolutionB:
merge_ExtraSpace(A,m,B,n);..
分类:
其他好文 时间:
2015-01-05 07:14:31
阅读次数:
141
https://oj.leetcode.com/problems/subsets-ii/http://blog.csdn.net/linhuanmars/article/details/24613193publicclassSolution{
publicList<List<Integer>>subsetsWithDup(int[]num){
Arrays.sort(num);
Set<List<Integer>>results=newHashSet<..
分类:
其他好文 时间:
2015-01-05 07:13:53
阅读次数:
190
https://oj.leetcode.com/problems/largest-rectangle-in-histogram/http://blog.csdn.net/linhuanmars/article/details/20524507publicclassSolution{
publicintlargestRectangleArea(int[]height)
{
//SolutionA
//returnlargestRectangleArea_Expand(height);
//SolutionB
..
分类:
其他好文 时间:
2015-01-05 07:13:52
阅读次数:
132
IEnumerable接口公开枚举器,该枚举器支持在指定类型的集合上进行简单迭代。也就是说:实现了此接口的object,就可以直接使用foreach遍历此object;IQueryable 接口它继承 IEnumerable 接口,而因为.net版本加入Linq和IQueryable后,使得IEnu...
分类:
编程语言 时间:
2015-01-05 07:00:15
阅读次数:
179
.NET平台CLR (Common Language Runtime 公共语言运行库)应用程序构建基块(building block)LING(Language Integrated Query,语言集成查询),LING是一种以声明方式查询数据源的方式IDE (Integrated Developm...
string[] arrStr = { ".com", "www.baidu.com", "www.qq.com", "www.bing.cn", "www.avc.net","www.vvv.cn","www.bbb.net" }; //定义查询规则var addressG = from gg i...
分类:
其他好文 时间:
2015-01-05 00:26:21
阅读次数:
123
原文:TeachYourselfProgramminginTenYears作者:PeterNorvig翻译:郭晓刚(foosleeper@163.net)最后修订日期:2004-3-192005-01-12增加了新的译本链接。本中文译本得到了PeterNorvig的许可。为什么每个人都急不可耐?走进...
分类:
其他好文 时间:
2015-01-05 00:21:31
阅读次数:
209
需要using System.Net.NetworkInformation;原理就是获取网卡的信息。//下面这段代码是我在百度贴吧找来的,经检验是正确的string userIp = ""; NetworkInterface[] adapters = NetworkInterface....
分类:
编程语言 时间:
2015-01-05 00:16:26
阅读次数:
358