package com.xdf.demo; /** * 匿名内部类 */public interface Animal { /** * 所有动物吃饭的方法 */ void eat();}*************************************** package com.xdf.d ...
分类:
其他好文 时间:
2017-12-13 14:55:18
阅读次数:
103
package com.xdf.demo; public abstract class Animal { // 所有动物的父类 private String name; // 姓名 private String strain; // 品种 private char sex; // 性别 /** * ...
分类:
其他好文 时间:
2017-12-13 14:42:11
阅读次数:
153
先常规先引入Raphael库: 然后就很简单了,直接操作,也不用再手动写svg什么的。 1.新建画布 2.建立图形 3.改变图形属性和样式 4.图形绑定事件 事件大概有click、hover、mousedown、mousedown、mousemove、mouseup、touchstart、touch ...
分类:
其他好文 时间:
2017-12-12 21:36:25
阅读次数:
311
package com.whxiong.work04; public abstract class Animal { private int age; public Animal(int age){ this.age=age; } public int getAge() { return age; ...
分类:
其他好文 时间:
2017-12-11 11:29:11
阅读次数:
179
Description The 2D-Nim board game is played on a grid, with pieces on the grid points. On each move, a player may remove any positive number of contig ...
分类:
其他好文 时间:
2017-12-10 23:01:59
阅读次数:
219
what has been done: This paper proposed a novel Deep Supervised Hashing method to learn a compact similarity-presevering binary code for the huge body ...
分类:
其他好文 时间:
2017-12-10 21:29:20
阅读次数:
207
Java StringBuffer 和 StringBuilder 类 当对字符串进行修改的时候,需要使用 StringBuffer 和 StringBuilder 类。 和 String 类不同的是,StringBuffer 和 StringBuilder 类的对象能够被多次的修改,并且不产生新的 ...
分类:
编程语言 时间:
2017-12-09 15:51:08
阅读次数:
197
我们在安装centos的minimal版本后,在使用yum安装工具时会提示:cannot find a valid baseurl or repo:base/7/x86_64 这是因为不能联网导致的,以下是解决方法: 方法一: 方法二: 以上两种方法均可。 ...
分类:
其他好文 时间:
2017-12-08 01:14:27
阅读次数:
176
For a undirected graph with tree characteristics, we can choose any node as the root. The result graph is then a rooted tree. Among all possible roote ...
分类:
其他好文 时间:
2017-12-07 13:16:08
阅读次数:
138
为了达到更好的用户体验,登陆界面需要设计多张背景图进行动态切换 ...
分类:
Web程序 时间:
2017-12-06 12:58:21
阅读次数:
157