Loading

上一页 1 2 3 4 5 6 ··· 8 下一页
摘要: 1.splice:删除元素并添加新元素,直接对数组进行修改,返回含有被删除元素的数组。 arrayObject.splice(index,howmany,element1,.....,elementX) index:必选,规定从何处添加/删除元素。 howmany:必选,规定应该删除多少元... 阅读全文
posted @ 2014-05-13 10:49 The Mechanic 阅读(209) 评论(0) 推荐(0) 编辑
摘要: 移动:http://www.csdn.net/article/2014-04-22/2819435-facebook-mobile-open-source-projects/1 阅读全文
posted @ 2014-04-26 23:24 The Mechanic 阅读(207) 评论(0) 推荐(0) 编辑
摘要: mvc :http://www.asp.net/mvc 阅读全文
posted @ 2014-04-25 16:10 The Mechanic 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 原文:http://hi.baidu.com/a889275/item/1ebf2780b48e72e3e596e048oracle中 connect by prior 递归算法 Oracle中start with...connect by prior子句用法 connect by 是结构化查询中用... 阅读全文
posted @ 2014-04-17 10:53 The Mechanic 阅读(211) 评论(0) 推荐(0) 编辑
摘要: --调用方法: --select * from GetChild('24') --select id from GetChild('24') --select * from KuCun where ProductType in(select id from GetChild('24')) ... 阅读全文
posted @ 2014-04-17 10:37 The Mechanic 阅读(855) 评论(0) 推荐(2) 编辑
摘要: $(function(){ var str="sunny,woo"; var sear=new RegExp(','); if(sear.test(str)) { alert('Yes'); } var tag=','; if(str.indexOf(tag)!=-1) { al... 阅读全文
posted @ 2014-04-16 14:02 The Mechanic 阅读(252) 评论(0) 推荐(0) 编辑
摘要: string[] mobiles = new string[] { "13069230781", "13269230001", "15123439076", "13269230002", "13942190276", "13269230003", "13269230004", "13269230005", "13269230006", }; Array.Sort(mobiles); //mobiles.Any(t = 阅读全文
posted @ 2014-04-11 23:31 The Mechanic 阅读(164) 评论(0) 推荐(0) 编辑
摘要: create table B_SMSTYPE( ID NUMBER, TYPENAME VARCHAR2(50))tablespace RENMINWANG pctfree 10 initrans 1 maxtrans 255 storage ( initial 64K minextents 1 maxextents unlimited ); create sequence B_SMSTYPE_SEQminvalue 1maxvalue 9999999999start with 1increment by 1cache 2000cyc... 阅读全文
posted @ 2014-04-03 15:59 The Mechanic 阅读(136) 评论(0) 推荐(0) 编辑
摘要: https://github.com/Trinea/android-open-project 阅读全文
posted @ 2014-04-03 12:03 The Mechanic 阅读(78) 评论(0) 推荐(0) 编辑
摘要: static void Main(string[] args){ int[] a = { 1, 2, 3, 4, 5, 6, 7 }; int[] b = { 4, 5, 6, 7, 8, 9, 10 }; int[] c = { 1, 2, 3, 3, 4, 1, 2, 4, 6, 1, 6, 5 }; // 交集 var fuck = a.Intersect(b); // 并集 var shit = a.Union(b); // a有b没有的 var diff1 = a.Except(b); // b有a没有的 var di... 阅读全文
posted @ 2014-03-25 17:11 The Mechanic 阅读(180) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 8 下一页