CSS 中文开发手册 用户界面 | CSS User Interface (Basic User Interface) - CSS 中文开发手册 CSS用户界面是一个CSS模块,它允许您定义与用户界面相关的特性的呈现和功能。 参照 优先 box-sizingcursoroutlineoutline-... ...
分类:
Web程序 时间:
2020-07-02 00:14:06
阅读次数:
64
CSS 中文开发手册 用户选择 | user-select (Basic User Interface) - CSS 中文开发手册 这是一个实验技术 在使用此产品之前,请仔细检查浏览器兼容性表。 user-selectCSS属性控制用户是否可以选择文本。这对加载为chrome的内容没有任何影响,除了... ...
分类:
Web程序 时间:
2020-07-01 23:59:00
阅读次数:
87
接口隔离原则 客户端不应该被迫依赖于他不使用的方法。即一个类对另一个类的依赖应该建立在最小的接口上。要为各个类建立它们需要的专用接口,而不要试图去建立一个庞大的接口供所有依赖它的类去调用。 类A通过接口Interface1依赖类B,类C通过接口Interface1依赖类D,如果接口Interface ...
分类:
其他好文 时间:
2020-07-01 22:19:43
阅读次数:
55
JVM class文件格式 魔法数 CAFE BABE 编译器版本号 Constant count Constant pool access flag this class super class interface count interfaces field count fields metho ...
分类:
其他好文 时间:
2020-07-01 20:22:12
阅读次数:
65
实际的应用场景 /** * ArticleTypeMapper 数据访问类 */ public interface ArticleTypeMapper { @Select("select * from ec_article_type where code = #{xxxx}") ArticleTyp ...
分类:
其他好文 时间:
2020-07-01 18:39:15
阅读次数:
57
检查共享的NFS权限 [root@nymtx ~]# id grid uid=6001(grid) gid=5001(oinstall) groups=5001(oinstall),5003(asmdba),5004(asmoper),5005(asmadmin) [root@nymtx ~]# i ...
分类:
数据库 时间:
2020-07-01 14:26:56
阅读次数:
158
apply plugin: 'com.android.application' buildscript { repositories { maven{ url'http://maven.aliyun.com/nexus/content/groups/public/' } maven{ url'htt ...
分类:
移动开发 时间:
2020-07-01 12:50:02
阅读次数:
77
原型模式属于创造型模式,通过二进制流拷贝已有的对象。 原型模式有浅克隆和深度克隆 案例: 原型接口Iprototype: public interface Iprototype<T> { T clone(); } 原对象实现原型接口: @Data public class Teacher imple ...
分类:
编程语言 时间:
2020-07-01 12:47:30
阅读次数:
63
定义一个 SqlIntercepor 类 import com.culturalCenter.placeManage.globalConfig.Interface.InterceptAnnotation; import org.apache.ibatis.executor.statement.Sta ...
分类:
数据库 时间:
2020-07-01 12:25:57
阅读次数:
153
public interface Collection<E> extends Iterable<E> The root interface in the collection hierarchy. A collection represents a group of objects, known a ...
分类:
编程语言 时间:
2020-07-01 09:41:31
阅读次数:
55