码迷,mamicode.com
首页 >  
搜索关键字:article    ( 49864个结果
mongodb 的安装使用步骤
1.下载安装mongodb (步骤链接地址:https://jingyan.baidu.com/article/d5c4b52bef7268da560dc5f8.html) 2.安装完成之后根据指令启动服务(E:\mongodb\bin>mongod --dbpath=E:\mongodb\db - ...
分类:数据库   时间:2017-07-10 16:48:35    阅读次数:184
常用环境变量配置
开发环境搭建:http://blog.csdn.net/zhshulin/article/details/30779873 maven新建web项目:http://blog.csdn.net/zhshulin/article/details/37921705 SSM框架的搭建:http://blog ...
分类:其他好文   时间:2017-07-10 16:43:50    阅读次数:166
php register_shutdown_function响应error 配合error_get_last 捕获错误
转自: http://blog.csdn.net/a757291228/article/details/62231125 ...
分类:Web程序   时间:2017-07-10 16:40:20    阅读次数:171
[转] Android开发之如何保证Service不被杀掉(broadcast+system/app)
转发:原文链接http://blog.csdn.net/mad1989/article/details/22492519 序言 最近项目要实现这样一个效果:运行后,要有一个service始终保持在后台运行,不管用户作出什么操作,都要保证service不被kill,这可真是一个难题。参考了现今各种定制 ...
分类:移动开发   时间:2017-07-10 16:30:36    阅读次数:260
(四)Asp.net web api中的坑-【api的返回值】
void无返回值 IHttpActionResult HttpResponseMessage 自定义类型 我这里并不想赘述这些返回类型, 可以参考博文http://blog.csdn.net/leonken88/article/details/53063693 和大神的http://www.cnbl ...
分类:Windows程序   时间:2017-07-10 15:11:13    阅读次数:192
http讲解
转自 https://www.qcloud.com/community/article/111 由于HTTP 1自身的局限性,它不能很好的为用户提供性能良好的WEB服务。于1999年6月正式发布了HTTP1.1标准REC2616,它厘清了之前版本中很多有歧义的地方,而且还新增了很多重要的优化,如持久 ...
分类:Web程序   时间:2017-07-10 14:33:56    阅读次数:267
关于MySQL的boolean和tinyint(1)
原文:http://blog.csdn.net/woshixuye/article/details/7089508 MySQL保存boolean值时用1代表TRUE,0代表FALSE。boolean在mysql里的类型为tinyint(1)。MySQL里有四个常量:true,false,TRUE,F ...
分类:数据库   时间:2017-07-10 14:32:59    阅读次数:258
STL_算法_元素计数(count、count_if)
C++ Primer 学习中。。。 简单记录下我的学习过程 (代码为主) count 、 count_if #include<iostream> #include<cstdio> #include<cstring> #include<vector> #include<set> #include<al ...
分类:编程语言   时间:2017-07-10 14:30:04    阅读次数:196
android深入之设计模式(一)托付模式
(一)托付模式简单介绍 托付模式是主要的设计模式之中的一个。托付。即是让还有一个对象帮你做事情。 更多的模式,如状态模式、策略模式、訪问者模式本质上是在更特殊的场合採用了托付模式。 托付模式使得我们能够用聚合来替代继承。java-组合优于继承。 最简单的java托付模式 class RealPrin ...
分类:移动开发   时间:2017-07-10 14:29:37    阅读次数:180
python中lambda的另类使用
带if/else: ( lambda x, y: x if x < y else y )( 1, 2 ) 科里化: ( lambda x: ( lambda y: ( lambda z: x + y + z )( 1 ) )( 2 ) )( 3 ) 递归: func = lambda n: 1 if ...
分类:编程语言   时间:2017-07-10 14:27:31    阅读次数:225
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!