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
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把带逗号的数据转换为表中的行以及将表中的行拼接成用逗号组成的数据。
具体代码如下功能写在注释里
--将有逗号的数据转换为一个表存储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
假设我们页面或者应用已在http://www.test1.com上了,而我们打算从http://www.test2.com请求提取数据。一般情况下,如果我们直接使用 AJAX 来请求将会失败,浏览器也会返回“源不匹配”的错误,"跨域"也就以此由来。 利用 CORS,http://www.test2....
分类:
Web程序 时间:
2015-04-20 12:36:08
阅读次数:
131
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
整数类型后面跟的是显示的宽度。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
对文件的操作#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
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中的语法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