码迷,mamicode.com
首页 >  
搜索关键字:value    ( 37865个结果
JSON整理
1、什么是JSON JSON(JavaScript Object Notation, JS 对象标记) 是一种轻量级的数据交换格式。 2、JSON基于两种结构: (1 )“名称/值“对的集合(A collection of name/value pairs)。 不同的编程语言中,它被理解为对象(ob ...
分类:Web程序   时间:2017-09-29 16:29:39    阅读次数:203
[BZOJ 1013][JSOI2008]球形空间产生器sphere
1013: [JSOI2008]球形空间产生器sphere Description 有一个球形空间产生器能够在n维空间中产生一个坚硬的球体。现在,你被困在了这个n维球体中,你只知道球面上n+1个点的坐标,你需要以最快的速度确定这个n维球体的球心坐标,以便于摧毁这个球形空间产生器。 有一个球形空间产生 ...
分类:Web程序   时间:2017-09-29 13:23:55    阅读次数:223
[LintCode] Add Operators
Given a string that contains only digits 0-9 and a target value, return all possibilities to add binary operators (not unary) +, -, or * between the d ...
分类:其他好文   时间:2017-09-29 09:52:50    阅读次数:172
numericUpDown1&trackBar1应用
private void numericUpDown1_ValueChanged(object sender, EventArgs e) { this.trackBar1.Value = (int)numericUpDown1.Value; } private void trackBar1_Scro ...
分类:其他好文   时间:2017-09-29 00:40:34    阅读次数:131
redis数据类型和操作指令
redis存储数据是key:value的形式,其中value一共支持五种数据类型:string、hash、list、set、zset 1、string:最常见的数据类型,就是字符串 SET key value 此命令设置指定键的值。 GET key 获取指定键的值。 GETRANGE key sta ...
分类:其他好文   时间:2017-09-29 00:37:22    阅读次数:210
Ubuntu 14.04 samba提示bad talloc magic value - access after free报错
Ubuntu14.04samba提示badtallocmagicvalue-accessafterfree报错原因:samba版本和libtalloc2版本不一致导致的解决:重装下samba或libtalloc2(apt-getinstallsamba或libtalloc2)
分类:数据库   时间:2017-09-29 00:11:33    阅读次数:226
radioButton& listBox&numericUpDown 操作
private void numericUpDown1_ValueChanged(object sender, EventArgs e) { if (numericUpDown1.Value == 1) radioButton1.Checked = true; if (numericUpDown1. ...
分类:其他好文   时间:2017-09-29 00:10:55    阅读次数:122
sqlserver字符串分割
create function sp_split( @c nvarchar(4000), @splitchar nvarchar(1) ) returns @table table (word nvarchar(max)) as begin declare @temp nvarchar(200) s... ...
分类:数据库   时间:2017-09-28 21:14:30    阅读次数:236
java web程序
MyJSP.jsp <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> <html> <head> </head> <body> <form action="a1.jsp" method="post"> 用户名:< ...
分类:编程语言   时间:2017-09-28 20:45:59    阅读次数:203
Java Integer类型比较
今天做了一道题目题目如下: 请说出输出: 答案为:true,false 是不是很奇怪? 翻源码去哈哈; 查看Integer.value(int i)方法 查看内部类 可以看到还是可以设置jvm的参数的java.lang.Integer.IntegerCache.high来设置这个最大或者最小缓存区, ...
分类:编程语言   时间:2017-09-28 20:41:03    阅读次数:263
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!