div#div2{display: table; width: 100%; height: 100%; text-decoration: none; outline: none; -webkit-transition: all 800ms ease-out; /* CSS3 transition. ...
分类:
Web程序 时间:
2016-06-13 18:40:54
阅读次数:
722
1619. [HEOI2012]采花 ★★☆ 输入文件:1flower.in 输出文件:1flower.out 简单对比时间限制:5 s 内存限制:128 MB 【题目描述】 萧薰儿是古国的公主,平时的一大爱好是采花。 今天天气晴朗,阳光明媚,公主清晨便去了皇宫中新建的花园采花。花园足够大,容纳了n ...
分类:
其他好文 时间:
2016-06-13 15:13:12
阅读次数:
210
SPD有时候文件被缓存住了,表现为文件的最后更改时间不对,或者本来文件已经被check in了,但是显示check out状态,而此时如果选择check in, 就会提示文件没有被check out. 解决方法: Clear cache: Close SPD2013. Delete everythi... ...
分类:
其他好文 时间:
2016-06-13 11:41:58
阅读次数:
121
转换流 InputStreamReader和OutputStreamWriter用于字节数据到字符数据之间的转换。 InputStreamReader需要和InputStream套接(把InputStream转换成InputStreamReader) OutputStreamWriter需要和Out ...
分类:
编程语言 时间:
2016-06-13 11:07:13
阅读次数:
254
package C; public class Tao { public static void main(String[] args) { int m=1; for (int i = 10; i >1; i--) { m=(m+1)*2; } System.out.println("第一天摘了桃子 ...
分类:
其他好文 时间:
2016-06-13 11:05:29
阅读次数:
170
一、链表的简单实现publicclassLink{ publicintiData; publicdoubledData; publicLinknext; publicLink(intid,doubledd) { iData=id; dData=dd; } publicvoiddisplayLink() { System.out.println(iData+","+dData); }}classLinkList{privateLinkfirst; publicLinkList(..
分类:
其他好文 时间:
2016-06-12 23:40:52
阅读次数:
230
1、在构造函数的继承中,子类不能继承父类的构造函数。但是子类却可以用super()或super(参数)使用父类的构造函数, <1>无参的构造函数: //父类 public class Animal { public Animal(){ System.out.println("Animal父类"); ...
分类:
编程语言 时间:
2016-06-12 21:55:17
阅读次数:
254
==比较的是对象的地址,也就是是否是同一个对象; equal比较的是对象的值。 Integer r1 = new Integer(900);//定义r1整型对象Integer r2 = new Integer(900);//定义r2整型对象System.out.println(r1==r2);//返 ...
分类:
其他好文 时间:
2016-06-12 12:16:13
阅读次数:
145
下面这个配置在现网服务器上跑了两年了,里面多项参数都有调整过,这个算是最终的一个配置,这个配置不一定适合每种项目,仅供参考。 如果MySQL出现异常:Out of memory 需要修改这几个参数: sort_buffer_size read_buffer_size read_rnd_buffer_ ...
分类:
数据库 时间:
2016-06-12 12:11:53
阅读次数:
166
1.获取Android源码并进行编译。 2.编译完毕后,取出out\target\common\obj\JAVA_LIBRARIES\framework_intermediates路径下的classes.jar 3.将classes.jar重命名为framework.jar并添加到Android S ...
分类:
移动开发 时间:
2016-06-12 10:51:14
阅读次数:
279