2020-02-18 New words scarf -- 围巾 bobby pin --发夹针 bow tie -- 领结 hair band -- 发带 apron -- 围裙 mitten -- 手套 helmet -- 头盔 accelerate -- 加快 applause -- 鼓掌;喝 ...
分类:
其他好文 时间:
2020-02-19 13:03:23
阅读次数:
256
业务场景:保存时,检查上游的销售出库单数量,和发货通知单数量是否一致,不一致时提示信息,点是则保存,点否不保存。 using System;using System.Collections.Generic;using System.Linq;using System.Text;using Kingd ...
分类:
其他好文 时间:
2020-02-18 20:42:42
阅读次数:
127
【阿里天猫、蚂蚁、钉钉面试专题题目加答案】 不会做别着急:文末有答案以及视频讲解,架构师资料 1. junit用法,before,beforeClass,after, afterClass的执行顺序 2. 分布式锁 3. nginx的请求转发算法,如何配置根据权重转发 4. 用hashmap实现re ...
分类:
编程语言 时间:
2020-02-18 09:33:21
阅读次数:
339
```java package com.xc.crm.test; import static org.junit.Assert.*; import org.junit.After; import org.junit.Before; import org.junit.Test; import org.... ...
分类:
Web程序 时间:
2020-02-17 15:44:44
阅读次数:
96
伪元素 ::before,::after 1. 空元素(不能包含内容的元素)不支持 ::before,::after IE 不支持的元素有:img,input,select,textarea。 FireFox 不支持的元素有:input,select,textarea。 Chrome 不支持的元素有 ...
分类:
Web程序 时间:
2020-02-17 14:07:34
阅读次数:
215
Python中常用的html数据抽取方法有正则、XPath和BeautifulSoup这三种。其中,最常用的XPath库是lxml。今天再介绍一个库SimplifiedDoc,一起比较一下他们的优劣。 1、安装 |名称|安装方法|包大小|说明| | | | | | |正则|不需安装(内置)||| | ...
分类:
Web程序 时间:
2020-02-16 12:43:19
阅读次数:
85
C - Piggy-Bank HDU - 1114 Before ACM can do anything, a budget must be prepared and the necessary financial support obtained. The main income for this ...
分类:
其他好文 时间:
2020-02-14 16:24:58
阅读次数:
72
一:断点(测网络中断、测篡改数据的界面显示): 断点分局部断点和全局断点: 1、全局断点: 请求之前:Rules -- Automatic Breakpoints -- before requests (F11) 选中后开启,再次点击取消 响应之后 :Rules -- Automatic Break ...
分类:
其他好文 时间:
2020-02-14 16:18:08
阅读次数:
73
并发编程面试题-内存模型说下内存模型定义为什么要有内存模型为什么要重排序,重排序在什么时候排如何约束重排序规则happens-before什么是顺序一致性CAS 实现的原理,是阻塞还是非阻塞方式?什么时候用,使用时需要考虑的问题处理器和 Java 分别怎么保证原子操作保证了原子性就能保证可见性吗?f ...
分类:
编程语言 时间:
2020-02-14 10:35:22
阅读次数:
75
伪元素:::before ::after *必须添加content属性,否则后期不可见 content: ""; *默认是行级元素,如果想设置宽高,就必须转换为块级元素 position: absolute; *行内元素,需要转换成块:display:block float:** position: ...
分类:
Web程序 时间:
2020-02-13 14:45:56
阅读次数:
204