利用RegExp关键字创建,var regexp=new RegExp(/123 /) 利用字面量创建 var rg=/123/ 表示要包含123 var rg=/[123]/ 表示只要包含1,或者2,或者3,test方法都返回true,[]表示多选一 var rg=/[a-z]/ 表示包含a到z的 ...
分类:
其他好文 时间:
2021-04-16 12:10:16
阅读次数:
0
/* * Copyright (c) 2015 Paul B Mahol * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under th ...
分类:
其他好文 时间:
2021-04-16 12:07:43
阅读次数:
0
dict1={'name':'Lara','age':18} #判断键在不在字典中 for one in dict1: if 'name' in dict1:#或dict1.keys() print('key在字典中!') break #判断值在不在字典中 for one in dict1: if ...
分类:
编程语言 时间:
2021-04-16 12:04:54
阅读次数:
0
问题: 设计结构体,能够满足以下两个功能: 向结构体中插入数据 void addNum(int num) 去当前结构体中的中位数 double findMedian() 若共有奇数个数,取最中间的数 若共有偶数个数,取中间两个数之和/2 Example 1: Input ["MedianFinder ...
分类:
其他好文 时间:
2021-04-16 11:45:21
阅读次数:
0
1、先对系统生成的Fragment改造成更直观的,比如这种 public class DashboardFragment extends Fragment { private DashboardViewModel dashboardViewModel; public View onCreateVie ...
分类:
移动开发 时间:
2021-04-15 12:40:48
阅读次数:
0
1:对synchronized的理解: 1.1 :假设t1和t2并发,开始执行时肯定有先有后 1.2:假设t1先执行,看到synchronized这个时候自动找“后面的共享对象”的对象锁,找到后并占有锁,然后执行后面同步代码块,在程序执行过程一直都是占有这把锁,直到同步代码块结束,锁才释放。 1.3 ...
分类:
其他好文 时间:
2021-04-15 12:38:55
阅读次数:
0
缺陷的信息: 缺陷严重程度:给开发指明当前重点;方便领导把控产品状态。(测试定的) 致命 严重 一般 建议 缺陷报告样例:(目的描述缺陷,使开发能够重现缺陷过程) 缺陷标题, 类型, 缺陷内容:(前置条件,重现步骤,期望结果与实际结果) 优先级, 缺陷严重程度。 缺陷常见4状态:新建(测试发起缺陷) ...
分类:
其他好文 时间:
2021-04-15 12:37:40
阅读次数:
0
一、正则表达式对象 obj = compile(pattern,flags = 0) 功能:获得正则表达式对象 参数:pattern:正则表达式 flags:功能标志位,提供更丰富的匹配 返回值:正则表达式对象 obj.findall(string,pos,endpos) 功能:通过正则表达式匹配字 ...
分类:
其他好文 时间:
2021-04-15 12:27:31
阅读次数:
0
题目: Implement a function that receives two IPv4 addresses, and returns the number of addresses between them (including the first one, excluding the la ...
分类:
其他好文 时间:
2021-04-15 12:16:50
阅读次数:
0
body, html{ -moz-user-select: none; /*火狐*//*选中文字时避免出现蓝色背景*/ -webkit-user-select: none; /*webkit浏览器*//*选中文字时避免出现蓝色背景*/ -ms-user-select: none; /*IE10*// ...
分类:
Web程序 时间:
2021-04-15 12:13:30
阅读次数:
0