最新 最热

我用过的设计模式(1)-- 本门心法

如果要理解为:一个类只有一个职责,当然也是可以的,简单化嘛。 单一职责的原话解释是这样的:There should never be more than one reason for a class to change. 什么意思?那里,应该,没有,多于,一个,原因,使得,类,去,改变。 啊,咱这...

2021-09-18
1

【Go】面向对象重难点总结

func(p *Person) Eat(){…} 使用指针和值都可以调用,尽量使用指针。无论使用值还是指针做主语,去访问属性和方法,其功能是一致的;定义方法时,方法的主语尽量使用指针,一方面是模仿SDK,一方面是最大程度地减少值传递的拷贝效...

2021-09-16
1

《手把手教你》系列技巧篇(二十二)-java+ selenium自动化测试-webdriver处理浏览器多窗口切换上卷(详细教程)

上一篇讲解和分享了如何获取浏览器窗口的句柄,那么今天这一篇就是讲解获取后我们要做什么,就是利用获取的句柄进行浏览器窗口的切换来分别定位不同页面中的元素进行操作。...

2021-09-08
1

数据库MongoDB-类型操作符

类型操作符$type 操作符$type根据类型查询。可取值和JavaScript类型取值相同。number 数值string 字符串,注意s小写object 对象取出所有age里面是数值类型的文档对象db.c1.find({age:{$type:"number"}});可以借助$exis...

2021-08-30
1

自定义JSTL函数

由于 jstl 函数 字符串替换不支持正则表达式 所以想用java String的 replaceAll进行替换

2021-08-27
1

【数据存储】【Redis】第五章:Redis缓存String类型的使用场景

package com.sky.testmodule.controller;import com.alibaba.fastjson.JSON;import com.sky.testmodule.constant.TestConstant;import com

2021-08-13
0

LeetCode 0179 - Largest Number

Given a list of non negative integers, arrange them such that they form the largest number.

2021-08-11
1

LeetCode 0166 - Fraction to Recurring Decimal

Given two integers representing the numerator and denominator of a fraction, return the fraction in string format.

2021-08-11
1

LeetCode 0139 - Word Break

Given a non-empty string s and a dictionary wordDict containing a list of non-empty words, determine if s can be segmented into a space-separated sequence of on...

2021-08-11
1

LeetCode 0227 - Basic Calculator II

Implement a basic calculator to evaluate a simple expression string.

2021-08-11
1