码迷,mamicode.com
首页 > 2015年06月02日 > 全部分享
c++代码重用—私有继承(学习笔记)
继承的准则派生类不继承基类的接口 >因为基类的公有方法成为派生类的私有方法派生类会继承实现student类示例1.私有继承的声明1 class student:private std::string,private std::valarray 2 { 3 public:4 .......
分类:编程语言   时间:2015-06-02 06:49:45    阅读次数:176
无聊啊 Next Permutation
不甚知道意义的题目,不过数组reverse值得复习一下哟public class Solution { public void nextPermutation(int[] num) { //这个题目意义何在啊唉 if (num==null || nu...
分类:其他好文   时间:2015-06-02 06:49:17    阅读次数:108
mysql 查询 字段的类型
select column_name,data_type from information_schema.columnswhere table_name = '表名'
分类:数据库   时间:2015-06-02 06:48:17    阅读次数:130
Longest Valid Parentheses
这道题最大的问题是位置容易想不清楚public class Solution { public int longestValidParentheses(String s) { // http://blog.csdn.net/linhuanmars/article/details/...
分类:其他好文   时间:2015-06-02 06:47:55    阅读次数:124
Java Beanutils 配置
1.先下载三个jar包http://apache.fayea.com/commons/collections/binaries/commons-collections-3.2.1-bin.tar.gzhttp://apache.fayea.com/commons/beanutils/binaries...
分类:编程语言   时间:2015-06-02 06:50:13    阅读次数:185
Nginx的安装,以及加载php和报错排除
nginx FastCGI错误Primary script unknown解决办法
分类:Web程序   时间:2015-06-02 06:48:02    阅读次数:128
Boyer-Moore: Implement strStr() --- find a needle in a haystack
https://www.youtube.com/watch?v=izMKq3epJ-QBoyer-Moore algrt 关于skip的部分很重要Implement strStr().Returns the index of the first occurrence of needle in hay...
分类:其他好文   时间:2015-06-02 06:47:02    阅读次数:151
Divide Two Integers
Divide two integers without using multiplication, division and mod operator.比有趣在于1 提速过程 2怎么判断符号正负public class Solution { public int divide(int divi...
分类:其他好文   时间:2015-06-02 06:47:51    阅读次数:91
打印输出文字代码
目的输出一串字符;println使用
分类:其他好文   时间:2015-06-02 06:48:52    阅读次数:123
【java高并发 大数据企业架构框架整合】Springmvc+mybatis+shiro+lucene+rest+webservice+maven
1. 使用阿里巴巴Druid连接池(高效、功能强大、可扩展性好的数据库连接池、监控数据库访问性能、支持Common-Logging、Log4j和JdkLog,监控数据库访问) 2. 提供高并发JMS消息处理机制 3. 所有功能模块化、所有模块服务化、所有服务原子化的方式,提供可拓展的服务模型,...
分类:编程语言   时间:2015-06-02 06:47:58    阅读次数:187
2015baidu复赛 矩形面积(包凸 && ps:附quickhull模板)
矩形面积Time Limit: 2000/1000 MS (Java/Others)Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 168Accepted Submission(s): 93Problem Descripti...
分类:其他好文   时间:2015-06-02 06:47:19    阅读次数:118
Kivy UrlRequest 与 Python unicode 以及 json
UrlRequestThe content is also decoded(译码) if the ContentTypeis application/json and the resultautomatically(自动地) passed through json.loads.官方文档中举例:def...
分类:编程语言   时间:2015-06-02 06:48:20    阅读次数:268
ASP.NET菜鸟之路之Application小例子
背景 我是一个ASP.NET菜鸟,暂时开始学习ASP.NET,在此记录下我个人敲的代码,没有多少参考价值,请看到的盆友们为我点个赞支持我一下,多谢了。 Session介绍 Application对象用来保存对所有用户共享的信息,比如网站登录人数。 在修改Application对象的时候,需要lo.....
分类:移动开发   时间:2015-06-02 06:47:37    阅读次数:143
html文字段落
一、新闻标题的实现例如;包含常用标签及元素【title】【head】【p】【body】【font】【 】【pre】【h1】【br】【noshade】【color】【text】【width】【blockquote】。二、新用到的标签及元素例如:【pre】标签会对文字实现空格缩短,只需打键盘空...
分类:Web程序   时间:2015-06-02 06:46:37    阅读次数:149
Terminating app due to uncaught
1》Images.xcassets: A 60x60@2x app icon is required for iPhone apps targeting iOS 7.0 and later图片像素过低编译器警告 不影响使用2》Terminating app due to uncaught excep...
分类:移动开发   时间:2015-06-02 06:45:37    阅读次数:139
struts2使用struts2-bootstrap-plugin插件
1、下载插件 http://code.google.com/p/struts2-bootstrap/2、添加maven依赖 com.jgeppert.struts2.bootstrap struts2-bootstrap-plugin 2.0.0 ...
分类:其他好文   时间:2015-06-02 06:48:33    阅读次数:174
深入理解javascript new的机制
我们在使用对象的时候,除了一些浏览器内置的单体对象可以直接使用外,都会new一个出来使用。1.最简单的莫过于如下获取一个Object对象实例var obj = new Object();说明:此时的new关键字干了最有用的一件事就是,继承了所有Object.prototype上的方法,这个可以去查看...
分类:编程语言   时间:2015-06-02 06:45:05    阅读次数:140
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!