元空间是方法区的实现 方法区是什么呢? 从java虚拟机规范9里摘抄的 It stores per-class structures such as the run-time constant pool, field and method data, and the code for methods ...
分类:
其他好文 时间:
2020-10-31 01:53:14
阅读次数:
25
In Kotlin, there is no static methods, but we can use companion object which works the same as static methods. For example, a class: package com.rsk i ...
分类:
其他好文 时间:
2020-10-16 10:59:03
阅读次数:
22
加这个属性 :getPopupContainer="prpupContainer" <a-select :getPopupContainer="prpupContainer" > </a-select> methods: { prpupContainer () { return document.q ...
分类:
其他好文 时间:
2020-10-14 20:32:44
阅读次数:
37
增加英文、阿拉伯文输入法修改代码:frameworks\base\packages\SettingsProvider\src\com\android\providers\settings\DatabaseHelper.javaloadSecureSettings方法中增加loadStringSetting(stmt,Secure.ENABLED_INPUT_METHODS,"com.an
分类:
编程语言 时间:
2020-10-13 17:17:55
阅读次数:
27
什么是幂等性 HTTP/1.1中对幂等性的定义是:一次和多次请求某一个资源对于资源本身应该具有同样的结果(网络超时等问题除外)。也就是说,其任意多次执行对资源本身所产生的影响均与一次执行的影响相同。 Methods can also have the property of “idempotence ...
分类:
其他好文 时间:
2020-10-09 21:08:12
阅读次数:
24
// 方法<p>Reversed message: "{{ reversedMessage() }}"</p> // 在组件中 methods: { reversedMessage: function () { return this.message.split('').reverse().join ...
分类:
其他好文 时间:
2020-10-09 20:58:23
阅读次数:
24
今日内容 1. Junit单元测试 2. 反射 3. 注解 Junit单元测试: * 测试分类: 1. 黑盒测试:不需要写代码,给输入值,看程序是否能够输出期望的值。 2. 白盒测试:需要写代码的。关注程序具体的执行流程。 * Junit使用:白盒测试 * 步骤: 1. 定义一个测试类(测试用例) ...
分类:
其他好文 时间:
2020-10-08 18:05:53
阅读次数:
16
Swagger简介 由于前后端分离,前端或者后端无法做到及时协商,最终导致问题爆发,所以程序猿写代码时都是很暴躁的。 这个时候,就可以用到Swagger了,它号称世界上最流行的API框架,Restful Api文档在线自动生成器。还可以在线测试API接口,不必特意去下载Postman,ApiPost ...
分类:
其他好文 时间:
2020-09-24 21:48:48
阅读次数:
37
子组件中<div class="area" ref="area_scroll" v-if="cityInfo"> import BScroll from "better-scroll"; methods: { initScroll() { this.scroll = new BScroll(this ...
分类:
其他好文 时间:
2020-09-18 03:11:56
阅读次数:
27
思路 定义一个数组来记录被点击的元素 arr 数组通过indexOf来来查找 如果有,激活类就是true 没有; 激活类为false 这一步最关键的是查找的内容就是显示出来的index, 点击的时候传递参数(key),通过indexOf查找 如果没有 push到arr; 若是有;splice删除这个 ...
分类:
移动开发 时间:
2020-09-17 21:25:26
阅读次数:
152