function firstBiggerThanMe(arr){ let firstBiggerArr = new Array(arr.length).fill(-1) for(let i = 0;i < arr.length - 1;i++){ let item = arr[i] for(let ...
分类:
其他好文 时间:
2020-07-23 22:45:39
阅读次数:
87
/// <summary> /// /// </summary> /// <typeparam name="T"></typeparam> /// <param name="dtSource">数据集</param> /// <param name="filedName">列名</param> // ...
原文:https://bbs.csdn.net/topics/340010860 路径:Tools -> Display Preferences(显示参数选择) -> Format -> Table -> Modify -> Fill -> Fill color -> More Colors -> ...
分类:
其他好文 时间:
2020-07-22 15:58:22
阅读次数:
176
制作进度条所需的资源: 用以载入进度条显示的场景 进度条背景以及进度条本身(颜色区别) 展示百分制进度情况的Text文本 需要载入的场景(这里使用的是自带场景) 载入时的场景布局:要将 Load 的 Image Type 修改为 Filled,Fill Method 修改为 Horizontal 具 ...
分类:
编程语言 时间:
2020-07-22 11:46:33
阅读次数:
98
一:背景 1. 讲故事 最近因为各方面原因换了一份工作,去了一家主营物联柜的公司,有意思的是物联柜上的终端是用 wpf 写的,代码也算是年久失修,感觉技术债还是蛮重的,前几天在调试一个bug的时候,看到了一段类似这样的代码: var dt = new DataTable(); SqlDataAdap ...
分类:
数据库 时间:
2020-07-22 11:41:35
阅读次数:
80
import java.util.Arrays;/** * @auther 付强 * @date 2020/7/21 - 13:46 */public class java6 { public static void main(String[] args) { //一维数组 int[] arr=ne ...
分类:
编程语言 时间:
2020-07-21 22:14:25
阅读次数:
65
ReactJs as a JavaScript library created by Facebook that lets us build dynamic user interfaces. What this dynamic user interface even means is that we ...
分类:
Web程序 时间:
2020-07-21 09:48:32
阅读次数:
76
Count Complete Tree Nodes Given a complete binary tree, count the number of nodes. Note: Definition of a complete binary tree from Wikipedia: In a com ...
分类:
其他好文 时间:
2020-07-20 15:46:54
阅读次数:
80
class Solution { public List<Integer> getRow(int rowIndex) { Integer[] res = new Integer[rowIndex+1]; Arrays.fill(res,1); for(int i = 1; i <= rowIndex ...
分类:
编程语言 时间:
2020-07-19 17:46:05
阅读次数:
79
第一节:了解常用的分布式解决方案 一、分布式事务方案:最终一致性、事务补偿、TCC、两阶段提交、最大能力通知等。具体结合业务场景。很多大型企业自主研发了自己的分布式事务解决方案,如:支付宝 XTS,去哪儿 QMQ。 1.基于可靠消息的最终一致性解决方案(异步确保型)(适用场景比较广) 2.TCC事务 ...
分类:
其他好文 时间:
2020-07-16 12:22:48
阅读次数:
96