一、常用的集合 1、Collection 接口的接口 对象的集合(单列集合){ >List 接口:元素按进入先后有序保存,可重复{ >LinkedList 接口实现类, 链表, 插入删除, 没有同步, 线程不安全 >ArrayList 接口实现类, 数组, 随机访问, 没有同步, 线程不安全 >Ve ...
分类:
编程语言 时间:
2020-07-17 01:21:30
阅读次数:
74
#include <iostream> #include<algorithm> #include<vector> using namespace std; void swap(int& a, int& b) { int t = a; a = b; b = t; } void quicksort(ve ...
分类:
编程语言 时间:
2020-07-15 23:16:35
阅读次数:
65
问题如下: INFO] Scanning for projects... [ERROR] The projects in the reactor contain a cyclic reference: Edge between 'Ve rtex{label='org.kuuyee.sample:mo ...
分类:
其他好文 时间:
2020-07-08 10:28:09
阅读次数:
170
You are given a map in form of a two-dimensional integer grid where 1 represents land and 0 represents water. Grid cells are connected horizontally/ve ...
分类:
其他好文 时间:
2020-07-08 09:14:32
阅读次数:
54
dnf install java-11-openjdk postgresql-server postgresql postgresql-contrib useradd sonar unzip sonarqube-VERSION.zip -d /opt ln -sv /opt/sonarqube-VE ...
分类:
其他好文 时间:
2020-07-04 15:26:29
阅读次数:
60
今天前端来问是否能在电脑上调试和查看在App的WebView中打开的页面。之前没注意这个事,大致搜索了一下,还是很简单的。基本步骤如下:1.首先,要在WebView页面打开可以debug的设置。(不过只支持KITKAT以上版本)if(Build.VERSION.SDK_INT >= Build.VE... ...
分类:
移动开发 时间:
2020-06-29 17:16:34
阅读次数:
85
1. 枚举的运用 Your team is writing a fancy new text editor and you've been tasked with implementing the line numbering. Write a function which takes a list ...
分类:
编程语言 时间:
2020-06-26 10:22:43
阅读次数:
66
前言 Java虚拟机把描述类的数据从Class文件加载到内存,并对数据进行校验、转换解析和初始化,最终形成可以被虚拟机直接使用的Java类型,这个过程被称为虚拟机的类加载机制。 类加载的时机 一个类型从被加载到虚拟机内存中开始,到卸载除内存为止,它的生命周期将会经历加载(Loading)、验证(Ve ...
分类:
其他好文 时间:
2020-06-24 20:03:26
阅读次数:
52
During my time with Zotero, I've really enjoyed its various features and the 300MB of file sync space is able to be extended by modifying the path to ...
登陆的时候提示没有有效的订阅You do not have a valid subscription for this server. Please visit www.proxmox.com to get a list of available options. 用的是免费版的,所以每次都提示这个 ...
分类:
其他好文 时间:
2020-06-13 17:11:38
阅读次数:
149