上一页 1 ··· 6 7 8 9 10 11 12 下一页
摘要: kotlin.NotImplementedError: An operation is not implemented: Not yet implemented 会发生——当你 override fun afterTextChanged(s: Editable?) { TODO("Not yet i 阅读全文
posted @ 2021-05-27 21:11 ou尼酱~~~ 阅读(178) 评论(0) 推荐(0)
摘要: Fragment.onViewCreated()是在Fragment.onCreateView()函数之后调用的,调用到它时 表明fragment视图层级结构已创建完毕。在onViewCreated()函数里观察LiveData可以保证“展示crime的视图已经准备完毕”,这也解释了为什么你传给ob 阅读全文
posted @ 2021-05-27 20:28 ou尼酱~~~ 阅读(286) 评论(0) 推荐(0)
摘要: private 意味着只在这个类内部(包含其所有成员)可见; protected—— 和 private一样 + 在子类中可见。 internal —— 能见到类声明的 本模块内 的任何客户端都可见其 internal 成员; public —— 能见到类声明的任何客户端都可见其 public 成员 阅读全文
posted @ 2021-05-27 20:00 ou尼酱~~~ 阅读(177) 评论(0) 推荐(0)
摘要: interface Dao里面@Update和@Insert不需要任何参数。Room会使用他们产生合适的SQL操作命令。 阅读全文
posted @ 2021-05-27 17:10 ou尼酱~~~ 阅读(143) 评论(0) 推荐(0)
摘要: jar文件其实就是一个压缩包,里面包含很多class文件(一个class文件是一个类的字节码)。方便在网络上传输、可以规定版本号,更容易进行版本控制。 var只能在方法内使用,不能用于定义成员变量。 打包一个package成为一个jar文件的方法 第一种方法: 第二种方法是使用jar creater 阅读全文
posted @ 2021-05-26 23:09 ou尼酱~~~ 阅读(121) 评论(0) 推荐(0)
摘要: <TextClock android:id="@+id/timeText" android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight="3" android:format12Hour=" 阅读全文
posted @ 2021-05-26 09:18 ou尼酱~~~ 阅读(174) 评论(0) 推荐(0)
摘要: 如果要遍历一个Java集合,我们是应该fori还是foreach呢?(增强for循环和iterator遍历的效果是一样的,也就说增强for循环的内部也就是调用iteratoer实现的)。 换句话说,对于一个集合,我们因该使用下面这两种中的哪一种遍历方式呢? for (int i=0, n=list. 阅读全文
posted @ 2021-05-20 09:45 ou尼酱~~~ 阅读(178) 评论(0) 推荐(0)
摘要: 内部类 静态内部类 有一个隐式引用,指向实例化这个对象的外部类对象 没有这个附加指针 不支持静态字段(language15) 支持哦 不支持静态方法 (language15) 支持哦 接口中的内部类自动是static和public 这。。。 我不能这样,编译器提示innerclass不是一个封闭的类 阅读全文
posted @ 2021-05-20 09:23 ou尼酱~~~ 阅读(117) 评论(0) 推荐(0)
摘要: class LastError<T> { private T lastError; public void setError(T t){ lastError = t; System.out.println("LastError: setError"); } } class StrLastError< 阅读全文
posted @ 2021-05-19 21:59 ou尼酱~~~ 阅读(143) 评论(0) 推荐(0)
摘要: getApplicationContext和getApplication返回结果一样,只是两者作用域不一样,getApplicationContext在所有context子类中都可以使用,getApplication只能在activity,或者service中使用(其实这也满足了大部分要求了) ge 阅读全文
posted @ 2021-05-19 08:43 ou尼酱~~~ 阅读(117) 评论(0) 推荐(0)
上一页 1 ··· 6 7 8 9 10 11 12 下一页