#include#include#include#include#define OK 1#define ERROR 0#define TRUE 1#define FALSE 0#define MAXSIZE 20 //存储空间初始分配量typedef int Status; //函数的类型typed...
分类:
其他好文 时间:
2015-07-07 12:44:06
阅读次数:
136
环境:jsp+tomcat6.0+nginx问题:url传递中文乱码解决:通过tomcat 配置文件添加编码格式配置即可。之前一直写成URLEncoding导致改了好几天没改出来。看网上方式都是说加这段。原来是单词写错了
分类:
Web程序 时间:
2015-07-07 12:43:34
阅读次数:
113
ServletContext,是一个全局的储存信息的空间,服务器开始,其就存在,服务器关闭,其才释放。request,一个用户可有多个;session,一个用户一个;而servletContext,所有用户共用一个。所以,为了节省空间,提高效率,ServletContext中,要放必须的、重要的、所...
分类:
其他好文 时间:
2015-07-07 12:44:02
阅读次数:
96
A Simple Problem with IntegersTime Limit:5000MSMemory Limit:131072KTotal Submissions:73163Accepted:22585Case Time Limit:2000MSDescriptionYou haveNinte...
分类:
其他好文 时间:
2015-07-07 12:40:55
阅读次数:
84
Html 1 2 3 4 5 JS,文件地址http://files.cnblogs.com/files/pzpzpop/DateSelector.js 1 function DateSelector(selYear, selMonth, selDay) { 2 this.sel...
分类:
其他好文 时间:
2015-07-07 12:40:44
阅读次数:
140
本份代码需要两个栈。一个是符号栈,一个是数字栈。输入中序表达式如9+(3-1)*3+10/2##define _CRT_SECURE_NO_WARNINGS#include#include#define max 100char ex[max]; /*存储后序表达式*//*函数功能:将中序表达式转化为...
分类:
其他好文 时间:
2015-07-07 12:43:02
阅读次数:
207
【InnoDB和MyISAM区别】【http://jeck2046.blog.51cto.com/184478/90499】 InnoDB和MyISAM是许多人在使用MySQL时最常用的两个表类型,这两个表类型各有优劣,视具体应用而定。基本的差别为:MyISAM类型不支持事务处理等高级处理,而In....
分类:
数据库 时间:
2015-07-07 12:41:41
阅读次数:
147
drop procedure if exists p_hello_world;create procedure p_hello_world(in v_id int)begin if (v_id > 0) then select '> 0'; elseif (v_id = 0...
分类:
数据库 时间:
2015-07-07 12:42:09
阅读次数:
179
http://deejay.iteye.com/blog/1327491functioncheckBracket(algorithms){varbracket=[];varalgorithms=algorithms||'';for(vari=0;i<algorithms.length;i++){if...
分类:
Web程序 时间:
2015-07-07 12:41:47
阅读次数:
201
命名空间System.Transactions;using (TransactionScope scope = new TransactionScope()){ //Do something with context1 //Do something with context2 /...
分类:
其他好文 时间:
2015-07-07 12:40:09
阅读次数:
243
1 下载安装包 http://www.planetcassandra.org/cassandra/?dlink=http://downloads.datastax.com/community/dsc-cassandra-2.1.5-bin.tar.gz 用tar包的形式安装,解压缩之后就可以用;.....
分类:
其他好文 时间:
2015-07-07 12:40:58
阅读次数:
158
1、黑名单绕过图片上传 $value){ if($value == $extension){ $boo = true; ...
分类:
Web程序 时间:
2015-07-07 12:39:58
阅读次数:
177
fagagagagag xxxxxxxxxxxcss如下:.juzhong{ background: red; line-height: 60px; display: inline-block;}.demo{ background: green; height: 90px; di...
分类:
其他好文 时间:
2015-07-07 12:41:05
阅读次数:
112
Java 下一代: 选择您的下一个 JVM 语言如果任意Java 下一代语言都适合作为您使用的下一代语言,那么您会如何选择?本文调查了会对这个重要决定产生影响的各个因素。Java 下一代: 克服同义词干扰上一期Java 下一代文章(“函数式编码风格”)对比和比较了 Scala、Groovy 和 Cl...
分类:
编程语言 时间:
2015-07-07 12:40:05
阅读次数:
141
create function 函数名 (@pno int) returns int as begin declare @a int if not exists(select * from person where pno=@pno) set @a=-1 else set @a=1 return @...
分类:
数据库 时间:
2015-07-07 12:41:44
阅读次数:
134
//: Playground - noun: a place where people can playimportUIKit/*闭包Swift ====> ClosuresRuby OC ====> BlockPython C++11 ====> LambaJavescript =====> An...
分类:
其他好文 时间:
2015-07-07 12:39:47
阅读次数:
138
sudo的配置文件 sudoers 一般在 /etc 目录下。 不过不管 sudoers 文件在哪儿,sudo 都提供了一个编辑该文件的命令:visudo 来对该文件进行修改。讲解sudo配置文件/etc/sudoers的格式。# User privilege specificationroot A...
分类:
其他好文 时间:
2015-07-07 12:40:05
阅读次数:
118