类和对象 类(Class)和对象(Object)是面向对象的核心概念。 类是对一类事物的描述,是抽象的、概念上的定义 对象是实际存在的该类事物的每个个体,因而也称为实例(instance) java类及类的成员 属性(field):对应类中的成员变量 (也叫成员变量、域、字段) 方法(method) ...
分类:
编程语言 时间:
2021-06-05 18:36:24
阅读次数:
0
在 linux 下面,查找路径一般是 where ,但是同样的命令在PS下面是不行的。 在PS下有个查看别名的命令:Get-Alias ,看一下where是啥? Alias where -> Where-Object 原来 where 是 Where-Object 这个命令的别名,并不是查看路径用的 ...
分类:
系统相关 时间:
2021-06-05 18:16:02
阅读次数:
0
private void txtMaxCount_TextChanged(object sender, EventArgs e) { //替换非数字 this.txtMaxCount.Text = Regex.Replace(this.txtMaxCount.Text, @"[^\d]*", "") ...
一、数组扁平化 有数组:let arr = [[2, 3, 1],[4, 3, 6, 5],[6, 2, 4, 9, [4, 11, 12, [12, 13, [10], 15]]], 20]1. reduce //若值为数组则递归遍历,否则concat function flatten(arr) ...
分类:
编程语言 时间:
2021-06-05 17:40:20
阅读次数:
0
KeyNotFoundException("Item was not found!"); NotImplementedException("Empty list."); ArgumentOutOfRangeException("index"); ArgumentNullException("elem ...
分类:
其他好文 时间:
2021-06-05 17:39:48
阅读次数:
0
namespace TestQuestionaire { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void bt_ok_Click(object sender, Eve ...
总纲:循序渐进、不急不躁、找到根因 1、Attributerror: Session object has no attribute 'watchers' 出现场景:在Jenkins用例编写时,出现以上问题提示。 程序之前都是正常的,周五升级了uiautomator2、weditor、pytest的 ...
分类:
其他好文 时间:
2021-06-04 19:23:03
阅读次数:
0
现有对象obj和空对象copy,想将obj的每一项都复制到copy对象中 let obj = { name:'aaa', age: 18 } let copy = {} 方法1:使用for...in... for(let key in obj){ copy[key] = obj[key] } con ...
分类:
其他好文 时间:
2021-06-04 19:11:44
阅读次数:
0
单例模式 https://www.cnblogs.com/restartyang/articles/7770856.html 定义:保证一个类只有一个实例,并提供一个访问它的全局访问点 适用场景: 当一个类只有一个实例而客户可以从一个众所周知的访问点访问它时 频繁访问数据库或文件的对象。 需要频繁实 ...
分类:
其他好文 时间:
2021-06-03 18:07:15
阅读次数:
0
简述 session是一种服务器端会话技术,在一次会话的多次请求间共享数据,将数据放在服务器端。 HttpSession类入门 HttpSession是对session数据的操作进行了一个封装,它是一个接口 获取HttpSession对象 HttpSession session = request. ...
分类:
其他好文 时间:
2021-06-02 20:50:41
阅读次数:
0