上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 30 下一页

2019年11月14日

scala 中的集合类

摘要: 集合最重要的继承路线 —— Traversable -> Iterable -> Seq -> LinerSeq -> List Traversable 中的公有方法: Iterable 中的公用方法 序列 Seq Seq trait用于表示序列。所谓序列,指的是一类具有一定长度的可迭代访问的对象。 阅读全文

posted @ 2019-11-14 16:09 Lemo_wd 阅读(471) 评论(0) 推荐(0) 编辑

js 面向对象之属性描述符

摘要: 上回介绍了面向对象之构造器属性。这次介绍下属性描述符 遍历对象属性 属性描述 自定义描述符 阅读全文

posted @ 2019-11-14 13:56 Lemo_wd 阅读(245) 评论(0) 推荐(0) 编辑

2019年11月12日

sbt 配置个屁的国内源

摘要: ~/.sbt/repositories idea 添加 VM 参数:-Dsbt.override.build.repos=true 命令行执行:sbt -Dsbt.override.build.repos=true clean compile sbt 常用命令 参考 https://www.scal 阅读全文

posted @ 2019-11-12 14:18 Lemo_wd 阅读(4186) 评论(0) 推荐(0) 编辑

2019年10月30日

Java 中的异常

摘要: Java 中的异常分为运行时异常与受检异常。 受检异常(比如 IOException) 优点:需要手动检查try catch或者继续向上抛出,可以说异常是类型安全的,可以保证程序的健硕性。 缺点:此类异常要么改变签名(向上抛出)要么手动捕获。如果某个方法添加了这类异常,可能导致一系列方法受影响。或者 阅读全文

posted @ 2019-10-30 23:59 Lemo_wd 阅读(155) 评论(0) 推荐(0) 编辑

2019年10月9日

js 面向对象之构造器与工厂函数

摘要: 一、字面量模式声明一个对象 let m = {name: "lisi", age:15} m.constructor // ƒ Object() { [native code] } Object.constructor // ƒ Function() { [native code] } ①每个对象都 阅读全文

posted @ 2019-10-09 23:48 Lemo_wd 阅读(325) 评论(0) 推荐(0) 编辑

2019年10月1日

postgresql —— 零碎笔记

摘要: 聚合函数 更新语句 事务 单引号与双引号 233 阅读全文

posted @ 2019-10-01 22:56 Lemo_wd 阅读(210) 评论(0) 推荐(0) 编辑

postgresql —— 查看索引

摘要: 查索引 语句: 查表名 查数据库 命令行 233 阅读全文

posted @ 2019-10-01 19:59 Lemo_wd 阅读(8975) 评论(0) 推荐(1) 编辑

2019年9月28日

archlinux 使用 postgresql

摘要: 一、安装与初始化 1、初始化数据目录 默认安装后已创建 postgres 系统用户 切换到 postgres 用户 $ sudo -iu postgres # Or su - postgres for root 数据目录初始化 [postgres]$ initdb --locale=zh_CN.UT 阅读全文

posted @ 2019-09-28 23:59 Lemo_wd 阅读(1158) 评论(0) 推荐(0) 编辑

2019年9月21日

我的 archlinux 内核参数配置

摘要: title Arch Linux linux /vmlinuz-linux initrd /amd-ucode.img initrd /initramfs-linux.img options root=/dev/nvme0n1p5 rootfstype=ext4 acpi_backlight=vendor ivrs_ioapic[32]=00:14.0 ivrs_ioapic[33]=00:00... 阅读全文

posted @ 2019-09-21 15:12 Lemo_wd 阅读(1049) 评论(0) 推荐(0) 编辑

2019年9月12日

archlinux 蓝牙耳机没有声音

摘要: 前提 蓝牙已开,并且连接成功,但是蓝牙耳机没有声音。 安装 切换设备输出为蓝牙耳机 阅读全文

posted @ 2019-09-12 23:56 Lemo_wd 阅读(1537) 评论(0) 推荐(0) 编辑

上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 30 下一页

导航