MFI make for ipad ,iphone, itouch 专们为苹果设备制作的设备 BLE buletouch low energy,蓝牙4.0设备因为低耗电,所以也叫做BLE peripheral,central == 外设和中心,发起连接的时central,被连接的设备为perilhe ...
分类:
其他好文 时间:
2016-12-19 13:55:37
阅读次数:
286
环境: Win10 x64 Git windows客户端(下载自 https://git-scm.com/) SourceTree 1.9.6.1(使用系统安装的Git,而非SourceTree内嵌的Git) 问题: 今天再clone 源码时,出现一个警告信息“warning: templates ...
分类:
Windows程序 时间:
2016-12-19 13:30:38
阅读次数:
2136
接口是把公共实例(非静态)的方法和属性结合起来,以封装特定功能的一个集合,一旦定义了接口,就可以在类中使用实现接口中的所有成员,接口可以看作创建者和使用者之间的契约,一旦实现了接口,就不要轻易变动(如果需要变更接口,一般需要继承旧接口并且添加版本号)。我们知道在C++里面是有纯虚函数,虚继承和多重继 ...
1、tomcat的访问日志AccessLogs定期或者定量删除 a 开启tomcat访问日志 编辑${catalina}/conf/server.xml文件.注:${catalina}是tomcat的安装目录 把以下的注释(<!-- -->)去掉即可。 <!--<ValveclassName="or ...
分类:
数据库 时间:
2016-12-19 08:48:05
阅读次数:
276
第一类:自动换行 GridView默认是自动换行,就是说当显示的字符串比较长的时候,GridView会自动换行。 如果我们不想让它自动换行,在页面后台添加如下代码即可: //正常换行 GridView1.Attributes.Add("style","word-break:keep-all;word ...
分类:
Web程序 时间:
2016-12-19 08:28:11
阅读次数:
147
#83. Remove Duplicates from Sorted List Given a sorted linked list, delete all duplicates such that each element appear only once. For example, Given ...
分类:
其他好文 时间:
2016-12-18 23:53:40
阅读次数:
160
高德API:http://lbs.amap.com/api/webservice/guide/api/georegeo/ http://restapi.amap.com/v3/geocode/geo?key=7de8697669288fc848e12a08f58d995e&s=rsv3&city=杭 ...
分类:
其他好文 时间:
2016-12-18 23:44:36
阅读次数:
589
往MongoDB当中插入json文件时提示的错误(我的操作系统是win10): 当时的执行命令是:mongoimport -d test -c restaurants d://primer-dataset.json 之后将 primer-dataset.json文件存入文件夹当中就可以成功插入了,执 ...
分类:
数据库 时间:
2016-12-18 23:32:47
阅读次数:
268
一、关键词public,protected,private以及不写时的作用域。Private: 类内不写: 类内、同一包内Protected: 类内、同一包内、不同包的子类(继承它的)Public: 类内、同一包内、不同包 ...
分类:
其他好文 时间:
2016-12-18 18:22:55
阅读次数:
155
using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.UI;using System.Web.UI.WebControls; public partial c ...
分类:
Web程序 时间:
2016-12-18 15:21:49
阅读次数:
189