码迷,mamicode.com
首页 >  
搜索关键字:test2 unit11    ( 841个结果
CF Fox And Names (拓扑排序)
Fox And Namestime limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard outputFox Ciel is going to publish a pape...
分类:编程语言   时间:2015-04-24 11:59:59    阅读次数:145
泛型与反射 演示
import java.lang.reflect.Method;public class Test2 { public static void main(String[] args) { Gen gen1=new Gen("aaa"); gen1.showTypeN...
分类:其他好文   时间:2015-04-23 23:03:11    阅读次数:145
shell学习笔记(1)-变量
1、shell中的变量可以自定义,shell中使用变量时用$name="shero"echo "hi ${name}"root@shero-virtual-machine:/home/shero/shell# ./test2.shhi shero注意,变量名和等号之间不能有空格,这可能和你熟悉的所有...
分类:系统相关   时间:2015-04-22 11:02:29    阅读次数:215
sql处理带逗号的数据
这篇博客宗旨在于处理如何使用sql把带逗号的数据转换为表中的行以及将表中的行拼接成用逗号组成的数据。 具体代码如下功能写在注释里 --将有逗号的数据转换为一个表存储id加数据 GO DECLARE @Text VARCHAR(200) SET @Text = 'test1,test2' DECLARE @xml XML SET @xml = CONVERT(XML,''+ REPLACE(@...
分类:数据库   时间:2015-04-21 18:05:50    阅读次数:195
AJAX POST&跨域 解决方案 - CORS
假设我们页面或者应用已在http://www.test1.com上了,而我们打算从http://www.test2.com请求提取数据。一般情况下,如果我们直接使用 AJAX 来请求将会失败,浏览器也会返回“源不匹配”的错误,"跨域"也就以此由来。 利用 CORS,http://www.test2....
分类:Web程序   时间:2015-04-20 12:36:08    阅读次数:131
CF A and B and Compilation Errors (排序)
A and B and Compilation Errorstime limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard outputA and B are prepar...
分类:编程语言   时间:2015-04-19 16:12:20    阅读次数:138
MySQL整数类型说明 int(11) vs int(20)
整数类型后面跟的是显示的宽度。M指示最大显示宽度。最大有效显示宽度是255。显示宽度与存储大小或类型包含的值的范围无关。实践出真知:mysql> create table test2 ( a int , b int(20) unsigned not null , c int(40) unsigned...
分类:数据库   时间:2015-04-18 12:57:36    阅读次数:191
Python 文件的IO
对文件的操作#coding=utf-8#!user/bin/pythonimport os#基本操作和写入文件fo = open("test2.py",'wb')print fo.nameprint fo.__sizeof__();print fo.modefo.write("print 20")f...
分类:编程语言   时间:2015-04-15 18:51:42    阅读次数:114
CF Drazil and His Happy Friends
Drazil and His Happy Friendstime limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard outputDrazil has many frie...
分类:移动开发   时间:2015-04-14 22:58:27    阅读次数:266
SQL语句中----删除表数据drop、truncate和delete的用法
一、SQL中的语法1、drop table 表名称eg: drop table dbo.Sys_Test2、truncate table 表名称eg: truncate table dbo.Sys_Test3、delete from 表名称 where 列名称 = 值 eg: delete from...
分类:数据库   时间:2015-04-13 18:00:48    阅读次数:192
841条   上一页 1 ... 67 68 69 70 71 ... 85 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!