码迷,mamicode.com
首页 >  
搜索关键字:add    ( 36740个结果
[LeetCode] Add Two Numbers
You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single ...
分类:其他好文   时间:2014-06-28 10:45:34    阅读次数:225
[LeetCode] Two Sum
Given an array of integers, find two numbers such that they add up to a specific target number.The function twoSum should return indices of the two nu...
分类:其他好文   时间:2014-06-26 00:29:49    阅读次数:168
java动态代理
@Test public void test(){ //new UserImpl(); /* ProxyT proxy=new ProxyT(new UserImpl()); proxy.add(); proxy.update();*/ final User user=new UserI...
分类:编程语言   时间:2014-06-26 00:14:14    阅读次数:260
C# 与 SQLite的操作
1、通过Add References引用SQLite ADO .NET安装目录的bin目录下的System.Data.SQLite.DLL。2、创建数据库文件:因为始终是个0字节文件,应该利用IO也可以(?!)。System.Data.SQLite.SQLiteConnection.CreateFi...
分类:数据库   时间:2014-06-25 23:33:18    阅读次数:277
List of LibreOffice extensions I'm using
Dmaths: assist mathematical drawings and symbolsMultiSave: save simultaneously to odt, pdf and doc.Review: add a review toolbarTexMaths: LaTeX equatio...
分类:其他好文   时间:2014-06-25 21:59:34    阅读次数:242
用SQL语句添加删除修改字段
1.增加字段 alter table docdsp add dspcodechar(200)2.删除字段 ALTER TABLE table_NAME DROP COLUMNcolumn_NAME3.修改字段类型 ALTER TABLE table_name ALTER COLUMNcolumn_n...
分类:数据库   时间:2014-06-25 20:23:09    阅读次数:240
swift官方文档中的switch中case let x where x.hasSuffix("pepper")是什么意思?
在官方文档中,看到这句。但不明白什么意思。let vegetable = "red pepper"switch vegetable { case "celery": let vegetableComment = "Add some raisins and make...
分类:其他好文   时间:2014-06-24 22:52:30    阅读次数:400
Jquery父页面和子页面的相互操作
//父页面调用子页面Add函数$("iframe").contentWindow.Add()//父页面对子页面Id为Sava的Dom元素执行一次单击操作$("iframe").contents().find("#Sava").click();//子页面调用父页面Update()函数parent.Up...
分类:Web程序   时间:2014-06-24 21:36:54    阅读次数:172
利用PHPRPC以及SOAP分别实现PHP的Webserver功能
服务端:phprpc服务端add('get','test');//添加test类中的get方法 $handle->start();//握手开始?>服务端:soap服务端'http://127.0.0.1/soap_server.php', 'uri'=>'soap_server....
分类:Web程序   时间:2014-06-24 14:17:23    阅读次数:239
Mysql在字符串类型的日期上加上10分钟并和现在的日期做比较
SELECT id FROM tran WHERE state = 'F' AND TIMESTAMPDIFF(SECOND,DATE_ADD(create_date,INTERVAL 10 DAY_MINUTE),"2014-06-18 10:30:29")>0 如果create_date加10分钟大于等于当前的时间("2014-06-18 10:30:29")...
分类:数据库   时间:2014-06-22 22:42:25    阅读次数:284
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!