1.enum枚举类型 与c不同的地方是强类型,可以设置数据的类型,两种初始化方法 1 enum c:char{red,kk,tt,yy}; 2 int main() 3 { 4 c mc=c::red; 5 c mc1=c:;kk; 6 c mcx='A'; //Error: invalid con... ...
分类:
其他好文 时间:
2017-02-17 23:12:25
阅读次数:
180
1.查询重复记录单字段 select * from tbl a where exists(select 1 from tbl b where a.username=b.username group by username having count(*) > 1) 2.查询重复次数 select cl ...
分类:
数据库 时间:
2017-02-16 22:24:20
阅读次数:
215
??
参考:http://blog.csdn.net/gaugamela/article/details/52981984
在Android M中,Google就引入了Doze模式。它定义了一种全...
分类:
移动开发 时间:
2017-02-09 17:44:44
阅读次数:
424
ViewData["moduleList"] = new SelectList(new El_Basic_ModuleInfo().Rows().AsEnumerable(), "moduleId", "name", objEl_UserInfo.moduleId); 第一个参数为查询得到的数据 第 ...
分类:
Web程序 时间:
2017-02-09 13:15:29
阅读次数:
322
不知道大家在ping的时候有没有遇到过这样的问题:当你ping一个域名的时候,ping结果返回得很慢,但是如果直接ping这个域名的ip,结果却快很多。 直接ping ip的时候,每两次发包之间没有明显的能感知出来的延迟: PING www.example.com (xxx.xxx.xxx.xxx) ...
分类:
其他好文 时间:
2017-02-07 16:38:47
阅读次数:
420
31:unity3d-配置Android环境,打包发布Apk流程详解 作者 阿西纳尼 关注 2016.08.28 22:52 字数 498 阅读 1806评论 0喜欢 5 作者 阿西纳尼 关注 2016.08.28 22:52 字数 498 阅读 1806评论 0喜欢 5 2016.08.28 22 ...
分类:
移动开发 时间:
2017-02-06 23:26:52
阅读次数:
296
--查看表的结构 desc ygb; select * from user_tab_columnswhere table_name='YGB'; --新建表ygb create table ygb( bh number(3), eid varchar2(6) constraint eid_p pri ...
分类:
数据库 时间:
2017-02-04 15:00:58
阅读次数:
213
webapi <Message>已拒绝为此请求授权。</Message> 原有的调用base.OnAuthorization(actionContext); 换成下面这个 /// <summary> /// 鉴权 /// </summary> /// <param name="actionConte ...
分类:
Windows程序 时间:
2017-02-03 21:51:38
阅读次数:
6808
参考:https://groups.google.com/a/chromium.org/forum/#!searchin/chromium-dev/tclib%7Csort:relevance/chromium-dev/zlAabuSVjGE/ozF2gqzaAiQJ 1.在generated_re... ...
分类:
其他好文 时间:
2017-01-29 23:03:02
阅读次数:
238
1、搜索引擎原理——从索引、搜索、facet底层原理看搜索引擎的本质2、开源搜索引擎分析——lucene(ES、Solr)、sphinx、wukong、bleve、poseidon、indextank-engine3、商业搜索引擎Splunk介绍——性能,架构,底层窥探4、提升CIS智能检索性能的方 ...
分类:
其他好文 时间:
2017-01-26 18:11:16
阅读次数:
436