码迷,mamicode.com
首页 >  
搜索关键字:new 与malloc的区别    ( 74660个结果
Linq递归生成easyui-tree
我把整个类放这里大加参考:public class ClassOrganization { static List org; public List GetOrgTree(string _pid) { List porg = new List(); porg = org.Where(g => g.a...
分类:其他好文   时间:2014-05-27 17:05:33    阅读次数:298
medium and fine crushing
we series hydraulic cone crusher machine designed by our company is a new type of cone crusher machine with international advanced level which brings ...
分类:其他好文   时间:2014-05-27 17:00:26    阅读次数:271
统计数组中重复元素个数
/** * 循环统计数组或集合中的重复元素个数 * @param args */ public static void main(String[] args) { Map map = new HashMap(); String[] ss = ...
分类:其他好文   时间:2014-05-27 16:23:14    阅读次数:290
冲刺阶段(二)第五天 5月18日
昨天:利用前几天学习的知识实现铁大助手中图片切换的功能。今天:团队测试困难:不能在所有Android版本模式下运行本软件,有的不能兼容。
分类:其他好文   时间:2014-05-26 18:29:47    阅读次数:178
js数字、字符串、数组之间的转化
1.数组转字符串var a, b;a = new Array(0,1,2,3,4);b = a.join("-");2.字符串转数组var s = "abc,abcd,aaa";ss = s.split(",");3.数字转字符串
分类:Web程序   时间:2014-05-26 18:05:05    阅读次数:292
maven安装for eclipse kepler
最近打算在Eclipse Kepler 下安装Maven。按照网上guide安装的时候好多都提示there is nothing to install。后来发现可能是版本问题。找了个帖子,解决方法如下,记录在此:Help->Install New Software. 选择All Available ...
分类:系统相关   时间:2014-05-26 18:04:25    阅读次数:367
JAVA多态示例
这多态,我觉得是最利害的。在开发大型程序中。但,也是需要经过足够多的实践经验才能随心利用的。class Quadrangle{ private Quadrangle[] qtest = new Quadrangle[6]; private int nextIndex = 0; pu...
分类:编程语言   时间:2014-05-26 17:53:47    阅读次数:295
记:Android 安装apk的代码实现
private void installApk(String fileUri) { Intent intent = new Intent(Intent.ACTION_VIEW); intent.setDataAndType(Uri.parse("file://" + fileUr...
分类:移动开发   时间:2014-05-26 17:36:26    阅读次数:290
Java中字符串比较时==和equals的区别
==是比较两个字符串引用的地址是否相同,即是否指向同一个对象,而equals方法则比较字符串的内容是否相同。例如String a = "abc";String b = "abc";a == b返回true,a.equals(b)同样返回true,这是为什么呢?原来程序在运行时有一个字符串池,创建字符...
分类:编程语言   时间:2014-05-26 17:29:08    阅读次数:320
var a=[]; 和 var a=new Array(); 的区别,为什么前者效率高
js数组声明方式
分类:其他好文   时间:2014-05-26 17:02:01    阅读次数:232
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!