最新 最热

Bootstrap 响应式框架 第四集

1、最外层 由nav并且引用 navbar navbar-default 两个类选择器来组成的

2020-08-17
0

selenium元素定位中css或者xpath不选择某一类元素

例如,下列标签中,不选择class为disable的span标签 则 这样写 dd:not(.disabled) > span 或者 dd:not(.disabled) span

2020-08-16
1

PHP中class.smtp类

<?php/*~ class.smtp.php.--------------------------------------------------------------------------

2020-08-14
1

设计模式之单例模式

Ensure a class has only one instance, and provide a global point of access to it.

2020-08-10
1

设计模式之状态模式

Allow an object to alter its behavior when its internal state changes. The object will appear to change its class.

2020-08-10
1

设计模式之适配器模式

Convert the interface of a class into another interface clients expect. An adapter lets classes work together that could not otherwise because of incompatible i...

2020-08-06
1

C++判断类型的模板

介绍一些判断类型的模板。  下列模板中包含于头文件<type_traits>(C++11起引入)。检查类型是否为voidis_void检查类型是否为std::nullptr_t  C++14起引入。is_null_pointer检查类型是否为整数类型is_integral检查...

2020-08-04
1

Bootstrap基础学习笔记

【列表: ul/ol/dl】列表默认样式为垂直样式,一个项目占据一行。带灰色圆角边框。

2020-08-02
1

JAVA反射功能

调用getField字段声明是private的会报错,不能用getField方法,应该使用getDeclaredField方法来获取Field。

2020-08-02
1

SpringBoot统一处理异常

然后通过@ExceptionHandler(xxxx.class)来指定xxxx异常时的处理方法

2020-07-31
0