思路参考:最长公共子序列 public class Solution { /** * longest common substring * @param str1 string字符串 the string * @param str2 string字符串 the string * @return st ...
分类:
其他好文 时间:
2020-10-08 18:32:02
阅读次数:
18
从视图结构来管控: 以stock.picking 的tree 视图为例,如果将name字段设置群组管控 <?xml version="1.0"?> <tree decoration-info="state == 'draft'" decoration-muted="state == 'cancel' ...
分类:
其他好文 时间:
2020-10-08 18:29:01
阅读次数:
16
继承层次、子类访问超类属性和方法、子类覆盖超类属性、向上转型和向下转型 ...
分类:
编程语言 时间:
2020-10-08 18:28:33
阅读次数:
17
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" ...
分类:
其他好文 时间:
2020-10-07 21:37:42
阅读次数:
92
<?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-07 20:25:43
阅读次数:
60
1.变量的定义:变量的定义用于为变量分配存储空间,还可以为变量指定初始值。在一个程序中,变量有且仅有一个定义。 2.变量的声明:用于向程序表明变量的类型和名字。程序中变量可以声明多次,但只能定义一次 变量的声明有两种情况 (1) 一种是分配内存空间的(声明)。例如:int a在声明的时候就已经分配了 ...
分类:
编程语言 时间:
2020-09-23 23:06:10
阅读次数:
38
本文链接:https://blog.csdn.net/lzz957748332/article/details/23737701 zip是build-in方法 而izip是itertools中的一个方法 这两个方法的作用是相似的,但是具体使用中有什么区别呢?今天来探究一下。 zip 文档中这样描述: ...
分类:
编程语言 时间:
2020-09-18 12:28:11
阅读次数:
41
<divclass="layui-form-itemlayui-form-item-45"><labelclass="layui-form-label">证照名称<spanstyle="color:red">*</span></label><divclass="layui-input-block"><divid="lic
分类:
其他好文 时间:
2020-09-18 02:41:44
阅读次数:
39
前端目标代码: <ul v-loading="loading"> <li v-for="(item, index) in options" :key="index" :style="{ cursor: item.tic_parent_id != 0 ? 'pointer' : '' }" :clas ...
分类:
其他好文 时间:
2020-09-18 01:50:58
阅读次数:
24
new Vue() 实例的初始化 Vue.js 是由 原型链 写法来实现的库,其构造函数在 src/core/instance/index.js function Vue(options) { if (process.env.NODE_ENV !== 'production' && !(this i ...
分类:
其他好文 时间:
2020-09-17 21:27:26
阅读次数:
41