转载自: http://blog.csdn.net/a925907195/article/details/42325579 1 安装 只安装在namenode节点上即可 1.1 下载并解压 下载:http://pig.apache.org/releases.html下载pig-0.12.1版本的pi ...
分类:
系统相关 时间:
2016-05-25 22:03:14
阅读次数:
341
使用php5.5运行ecshop的时候出现如下错误Deprecated: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in \ecshop\includes\cls_template ...
分类:
其他好文 时间:
2016-05-25 22:02:46
阅读次数:
157
/* 新建一个分类,打印带中文的NSDictionary和NSArray就不会再出现乱码了: */ #import <Foundation/Foundation.h> @implementation NSDictionary (Log) -(NSString *)descriptionWithLoc ...
分类:
其他好文 时间:
2016-05-25 22:03:53
阅读次数:
121
第一部分:题目 Description Jessica's a very lovely girl wooed by lots of boys. Recently she has a problem. The final exam is coming, yet she has spent little ...
分类:
其他好文 时间:
2016-05-25 22:01:24
阅读次数:
169
Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases. For example,"A man, a plan, a canal: Pan ...
分类:
其他好文 时间:
2016-05-25 22:03:03
阅读次数:
122
之前一直对浏览器缓存只能描述一个大概,深层次的原理不能描述上来;终于在前端的两次面试过程中被问倒下,为了泄恨,查阅一些资料最终对其有了一个更深入的理解,废话不多说,赶紧来看看浏览器缓存的那些事吧,有不对的地方,请各位不吝赐教啊。 本文主要讲解浏览器端的缓存,缓存的作用是不言而喻的,能够极大的改善网页 ...
分类:
Web程序 时间:
2016-05-25 22:00:31
阅读次数:
304
创建dynamic web project 在webcontent——web-inf——lib 中添加相应的需要的jar包,jar包在网上有很多资源,就不进行说明了 搭建hibernate环境 在src下 编写hibernate.xml文件 编写实体类 注意 : hibernate.xml文件中的 ...
分类:
Web程序 时间:
2016-05-25 22:03:00
阅读次数:
270
gradle install http://www.itnose.net/detail/6500082.html http://stackoverflow.com/questions/5102571/how-to-install-maven-artifact-with-sources-from-co ...
分类:
其他好文 时间:
2016-05-25 22:01:27
阅读次数:
251
1. 问题: jdk版本不匹配 解决方法:首先 到项目空间的 .setting文件中找到 org.eclipse.wst.common.project.facet.core.xml 修改参数 然后 项目 >右键 >属性 >Java Compiler >Compiler Compliance Leve ...
分类:
编程语言 时间:
2016-05-25 22:01:48
阅读次数:
243
get是从服务器上获取数据,post是向服务器传送数据。 get是从服务器上获取数据,post是向服务器传送数据。 get是把参数数据队列加到提交表单的ACTION属性所指的URL中,值和表单内各个字段一一对应,在URL中可以看到。post是通过HTTP post机制,将表单内各个字段与其内容放置在 ...
分类:
其他好文 时间:
2016-05-25 22:02:39
阅读次数:
145
1.继承使用的场合:写一个class,这个class和以前写过的class相比,只是增加一些成员或者对原来的成员的行为有修改,则可以继承原来的class,语法不展开说,通过代码写写几句总结。 基类指针创建子类对象,同名同参函数,优先调用子类函数。 2.句柄类 以前的博文写得过于繁琐,几天前重新梳理了 ...
分类:
编程语言 时间:
2016-05-25 22:01:45
阅读次数:
216
今天来看一下vendor/yiisoft/yii2/base/Event.php ...
分类:
其他好文 时间:
2016-05-25 22:00:52
阅读次数:
155
##javaScript对象 创建简单对象:<br> eg:<br> 没有类的概念,表示对象通过function来表示 <code> function Dog(name,age){ //浏览器会产生一个对象object this.name=name; this.age=age; this.eat=f ...
分类:
编程语言 时间:
2016-05-25 21:59:45
阅读次数:
122
一、Matlab并行处理操作总结 1.1 Matlab并行处理——parfor使用方法: parfor使用教程地址 Matlab错误提示: 解决方案: Usually helps to reveal such problems. Then Matlab stops, when the error o ...
分类:
其他好文 时间:
2016-05-25 22:00:24
阅读次数:
219
Given a string S and a string T, count the number of distinct subsequences of T in S. A subsequence of a string is a new string which is formed from t ...
分类:
其他好文 时间:
2016-05-25 22:00:13
阅读次数:
147
数据结构——栈 前言: 大家好,以后会上传数据结构的一系列解题记录和学习记录,谢谢大家的关注。 (限于本人的经验,如此博文有谬误之处,请及时评论,谢谢大家) 正文: 今天我学了栈(其实早就会),正好心血来潮要写写数据结构的学习记录,所以就写了这个博文,不明白为什么上篇博文为什么有那么多人阅读,希望继 ...
分类:
其他好文 时间:
2016-05-25 22:00:24
阅读次数:
111
STL都是在内存的堆区分配的,但是其析构也是STL帮我们做好的,不用手动去delete。 1.vector 逻辑地址连续的一片内存空间,当空间不足,重新申请新的地址空间,将原有的数据复制过去,而新的地址空间的大小C++没有规定,依赖于编译器的实现。在VC++中是原来的1.5倍,而g++中则是原来的2 ...
分类:
编程语言 时间:
2016-05-25 22:00:52
阅读次数:
151