<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" an ...
分类:
移动开发 时间:
2020-11-02 10:06:11
阅读次数:
34
分享是价值的传递,喜欢就点个赞 引言 今天我们继续来深入的剖析类加载器的内容。上节课我们讲了类加载器的基本内容,没看过的小伙伴请加关注。今天我们继续。 什么是定义类加载器和初始化类加载器? 定义类加载器:假设我们的某一个类是由ExtClassLoader加载的,那么ExtClassLoader称为该 ...
分类:
其他好文 时间:
2020-11-01 10:35:29
阅读次数:
12
运行ParentChildTest代码得到的结果是: Parent.printValue(),myValue=100 Child.printValue(),myValue=200 Child.printValue(),myValue=200 Child.printValue(),myValue=20 ...
分类:
其他好文 时间:
2020-11-01 09:30:58
阅读次数:
14
You are given a perfect binary tree where all leaves are on the same level, and every parent has two children. The binary tree has the following defin ...
分类:
其他好文 时间:
2020-10-27 11:41:41
阅读次数:
23
checkThread突破口 首先来找下突破口。从上面提到的异常开始切入,抛出该异常的代码如下: android.view.ViewRootImpl#checkThread void checkThread() { if (mThread != Thread.currentThread()) { t ...
分类:
移动开发 时间:
2020-10-24 10:15:16
阅读次数:
42
项目地址 git clone https://gitee.com/kendoziyu/code-servlet-parent 该目录下的 javac-servlet 表示的是本文的项目。 基于web.xml开发步骤 下载、安装 Tomcat。 编写一个继承 HTTPServlet 的 Java 类M ...
分类:
其他好文 时间:
2020-10-21 21:09:10
阅读次数:
25
首先,$listeners是什么? // Parent <template> ... <child v-on:event-one="methodOne" v-on:event-two="methodTwo" /> ... </template> 那么你在使用Child时,传入的所有v-on事件都可以 ...
分类:
其他好文 时间:
2020-10-18 16:15:48
阅读次数:
16
九宫格 <?xml version="1.0" encoding="utf-8"?><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_paren ...
分类:
移动开发 时间:
2020-10-14 20:00:28
阅读次数:
27
在pom.xml文件添加依赖 <!-- spring boot parent节点,引入这个之后,在下面和spring boot相关的就不需要引入版本了; --> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spri ...
分类:
Web程序 时间:
2020-10-09 21:10:00
阅读次数:
35
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" an ...
分类:
其他好文 时间:
2020-10-08 19:36:23
阅读次数:
24