码迷,mamicode.com
首页 >  
搜索关键字:value    ( 37865个结果
17.11.4 矩阵取数游戏
1 #include<iostream> 2 using namespace std; 3 int main() 4 { 5 int n, m,a,b,sumlin=0,summax=0; 6 cin >> n >> m; 7 int max[81][81],num[81]; 8 for(int l ...
分类:其他好文   时间:2017-11-04 13:16:41    阅读次数:190
redis自启动
$ vi /etc/init.d/redis 1 # chkconfig: 2345 90 10 2 # description: Redis is a persistent key-value database 3 4 PATH=/usr/local/bin:/sbin:/usr/bin:/bin ...
分类:其他好文   时间:2017-11-04 13:14:19    阅读次数:193
Integrity Constraints
NOT NULL Integrity Constraints You can only add a column with a NOT NULL constraint if the table does not contain any rows or if you specify a default ...
分类:其他好文   时间:2017-11-04 13:13:34    阅读次数:132
centos7中基于hadoop安装hive(CentOS7+hadoop2.8.0+hive2.1.1)
1下载hive 下载地址:http://hive.apache.org/downloads.html 点击上图的Download release now! 如图: 点击上图的某个下载地址,我点击的是国内的这个地址:http://mirror.bit.edu.cn/apache/hive/ 如图: 点 ...
分类:其他好文   时间:2017-11-04 11:34:24    阅读次数:296
python对excel操作
学习一下:原文链接:http://www.cnblogs.com/lhj588/archive/2012/01/06/2314181.html 一、安装xlrd模块 到python官网下载http://pypi.python.org/pypi/xlrd模块安装,前提是已经安装了python 环境。 ...
分类:编程语言   时间:2017-11-04 11:23:46    阅读次数:202
Java集合框架
挺多的,整理用了很长时间,外加理解。 1、集合概述 这些接口和类大致分为3层 第一层是接口,包括:Conllection接口、List接口、Set接口和Map接口。 第二层是抽象类,AbstractConllection、AbstractList、AbstractSet、AbstractMap。方便 ...
分类:编程语言   时间:2017-11-04 01:51:54    阅读次数:296
c#基础
在 C# 中,变量分为以下几种类型: 值类型(Value types) 引用类型(Reference types) 指针类型(Pointer types) C#中,几个常用的输出方式: Console.WriteLine("Hello China!"); Console.Write("Hello W ...
分类:Windows程序   时间:2017-11-04 00:13:14    阅读次数:204
Python 字典 dict{}
dict{key:value} 映射类型 fromkeys(seq[, value]) 创建新字典,键seq对应的值value。每次使用创建新的字典 使用items()访问字典中每一项,使用key()访问字典中每一个键,使用value()访问字典中每一个键值 使用索引访问键值,如果键不存在会报错。 ...
分类:编程语言   时间:2017-11-03 23:49:00    阅读次数:192
说一下Servlet里面得request和response
当一个servlet被调用的时候,我们一般继承带协议的httpServlet,大方向上是下图这样 在这里面request和response起了什么作用呢? 来细究一下。 request:1.封装了客户端所有的请求数据: 请求行,请求头,请求体(get没体) 2.而当涉及到http协议时,我们还可以利 ...
分类:其他好文   时间:2017-11-03 21:49:39    阅读次数:184
解决springmvc+fastjson返回页面出现乱码问题
在controller里面的接口上面加,produces="text/html;charset=UTF-8"即可 @RequestMapping(value = "/addLjlUsrServiceManInfoOne" ,produces="text/html;charset=UTF-8") @R ...
分类:编程语言   时间:2017-11-03 21:44:45    阅读次数:156
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!