摘要:
Kotlin-嵌套类&内部类&匿名内部类 1. 嵌套类 类可以被嵌套在其它类中: class Outer { private val bar: Int = 1 class Nested { fun foo() { println("foo in Outer#Nested#foo() ") } fun 阅读全文
摘要:
# Java: 查看jar包的JDK版本 今天突然发现新编译的jar包在AS跑不起来了,报错如下: ```bash class file has wrong version 61., should be 55.0 ``` ![image-20230831161551715](https://img2 阅读全文
摘要:
# Git: 文件名带空格 无法add的问题 问题描述: 使用`git add`添加一个文件名带空格的文件会报错: `fatal: pathspec '‘demo copy’ did not match any files` ![image-20230719143653285](https://im 阅读全文
摘要:
# android: channel is unrecoverably broken and will be disposed 记录一个关于内存泄漏的问题: RT, 在停止播放音乐时,每过一段时间就会报 ```java 05-25 10:52:21.125 491-528/system_proces 阅读全文