css样式:.div a img{ width: 88px; height: 88px; border-radius: 88px; transition: all 1.2s ease-out 0s;}.div a img:hover{ -webkit-transform:rotate(360deg)...
分类:
Web程序 时间:
2014-07-24 12:22:25
阅读次数:
426
2014.7.24 上午 写了一个最简单的Java class1 public class Hello{2 public static void main(String[]args){3 System.out.println("Hello,java");4 }5 }然后用g...
分类:
其他好文 时间:
2014-07-24 12:13:25
阅读次数:
182
/**
* 类说明
*
* @author 曾修建
* @version 创建时间:2014-7-23 上午09:50:46
*/
public class Diamond {
public static void getDia(int n) {
System.out.println("第一个 :");
for (int i = 0; i < n/2+1; i++) {
...
分类:
编程语言 时间:
2014-07-24 10:25:43
阅读次数:
257
题目链接:http://poj.org/problem?id=1222题意: 给你一个5 * 6的矩阵,由0和1组成。对于其中一个位置(i, j)进行操作的话,四周4个位置都会操作一次。(注:所谓的操作就是把状态0->1或者1->0)这个游戏一般人小时候都玩过吧。 最后问你是从一个当前状态转移到目标...
分类:
其他好文 时间:
2014-07-24 00:48:17
阅读次数:
278
1、关于默认搜索域
If you are using the Lucene query parser, queries that don't specify a field name will use the defaultSearchField. The DisMax and Extended DisMax query parsers do not use this value.
...
分类:
其他好文 时间:
2014-07-23 22:38:28
阅读次数:
279
03_wsdl和soap讲解(介入了tcpmon工具)WSDL内容: 1.types:用来定义访问的类型 2.message:SOAP(simple object access Protocol) 3.portType:指明服务器的接口,并且通过operation绑定相应的in和out的消息:...
分类:
其他好文 时间:
2014-07-23 22:29:47
阅读次数:
337
public static void main(String[] args) { List list = new ArrayList(); for (int i = 0; i < 8000; i++) { list.add(i); } System.out.println(list); int...
分类:
编程语言 时间:
2014-07-23 20:38:35
阅读次数:
1260
How to use Virstalbox to share files with Linux and Windows, and to move the mouse in and out Virtualbox freely without click Ctrl key, herewith what I have done to achieve both....
存储过程用于执行特定的操作,当建立存储过程时,既可以指定输入参数(in),也可以指 定输出参数(out),通过在过程中使用输入参数,可以将数据传递到执行部分;通过使用输出参数,可以将执行部分的数据传递到应用环境。在sqlplus 中可以使用create procedure命令来建立过程。实例如下:1...
分类:
数据库 时间:
2014-07-23 16:45:01
阅读次数:
221
Problem Description
During summer vacation,Alice stay at home for a long time, with nothing to do. She went out and bought m pokers, tending to play poker. But she hated the traditional gameplay. S...
分类:
其他好文 时间:
2014-07-23 16:36:51
阅读次数:
304