摘要:
<!DOCTYPE html> <html lang="zh"> <head> <meta charset="UTF-8"> <title>咸瑜专用markdown编辑器</title> <style> body { font-family: Arial, sans-serif; backgroun 阅读全文
摘要:
maven: <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>3.1.0</version> </plugin> 阅读全文
摘要:
书上的笔记转移:【REVIEW】: final 除了不被重写、不被修改、不被继承、值不可变等等。。。还有以下几个特性: 1.如果成员变量的final修饰未进行赋值,那么是可以在构造方法和构造代码块进行赋值的,如果赋值成功,那么后面都不可能在进行赋值了。 2. 静态代码块我知道,就是只执行一次的sta 阅读全文
摘要:
VIsual Studio 安装 直接下载社区版本,免费 Vlsual Studio快捷键 https://learn.microsoft.com/zh-cn/visualstudio/ide/default-keyboard-shortcuts-in-visual-studio?view=vs-2 阅读全文
摘要:
张鑫xu : <script src="http://www.zhangxinxu.com/study/down/ie-css3.htc"></script> 让IE能实现CSS3 。 阅读全文
摘要:
width: fit-content; 阅读全文
摘要:
/** * 定义公共样式的地方 */ /** * 1行 不换行 显示 ... */ .line-clamp{ overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } /** * 0. 最多显示1行 */ .line-clam 阅读全文
摘要:
emm 其实就是异常一直抛出传递,但是最后只会显示最后一个异常,这就是异常链。 需要用到Trowable的cause属性 但是除了Error、Exception和RuntimeException外,都不存在带cause参数的构造器 public class HotelAgeException ext 阅读全文