码迷,mamicode.com
首页 >  
搜索关键字:collect    ( 2531个结果
java的Iterable转stram流操作再转List集合
List<Integer> collect = StreamSupport.stream(dwflztglbRepository.findAll().spliterator(), false).map(Dwflztglb::getZtId).distinct().collect(Collectors ...
分类:编程语言   时间:2020-07-02 16:46:26    阅读次数:83
2020-06-30 动态sql
2020-06-30 1. 动态sql 参数: 单个 1. String。基本变量 2. 集合(List)数组(array) a) 集合 size b) 数组 length 多个 1. arg0 arg1 2. param1 param2 常用动态sql 1.If(< If >标签) 作用:判断是否 ...
分类:数据库   时间:2020-06-30 22:18:29    阅读次数:63
win32-改变显示器的亮度
调用SetMonitorBrightness 代码示例: #pragma comment(lib, "dxva2.lib") #include <windows.h> #include <lowlevelmonitorconfigurationapi.h> #include <physicalmon ...
分类:Windows程序   时间:2020-06-30 17:13:39    阅读次数:94
java8 .stream().sorted().filter().map().collect()用法
https://blog.csdn.net/shine_guo_star/article/details/94383319 steam():把一个源数据,可以是集合,数组,I/O channel, 产生器generator 等,转化成流。 map():用于映射每个元素到对应的结果。以下代码片段使用 ...
分类:编程语言   时间:2020-06-28 20:59:10    阅读次数:598
数据仓库 业务分析常用函数
一 collect_set函数,将某个字段形成一个数组 select course, collect_set(area), avg(score) from stud group by course; chinese ["sh","bj"] 79.0 math ["bj"] 93.5 还可以通过下标取 ...
分类:其他好文   时间:2020-06-26 18:05:16    阅读次数:62
leetcode-1488-避免洪水泛滥
题目描述: 提交: class Solution: from typing import List def avoidFlood(self, rains: List[int]) -> List[int]: import heapq heap = [] res = [-1 if i != 0 else ...
分类:其他好文   时间:2020-06-26 11:00:34    阅读次数:70
1095 Cars on Campus (30分)(排序)
1095 Cars on Campus (30分) Zhejiang University has 8 campuses and a lot of gates. From each gate we can collect the in/out times and the plate numbers ...
分类:编程语言   时间:2020-06-24 00:20:12    阅读次数:73
java 数据结构(十):Collection子接口:Set接口
1. 存储的数据特点:无序的、不可重复的元素具体的: 以HashSet为例说明:1. 无序性:不等于随机性。存储的数据在底层数组中并非照数组索引的顺序添加,而是根据数据的哈希值决定的。2. 不可重复性:保证添加的元素照equals()判断时,不能返回true.即:相同的元素只能添加一个。 2. 元素 ...
分类:编程语言   时间:2020-06-23 20:58:52    阅读次数:55
spring bean自动装配
说到spring自动装配的bean大伙都比较了解,@Autowired不就完了么。哈哈,今天我在review的时候发现了这个问题,小伙伴看下代码: @Bean public List<PlatformCheck> platformCheckList() { Map<String, PlatformC ...
分类:编程语言   时间:2020-06-23 17:28:38    阅读次数:54
Mongodb 学习
安装 下载mongodb的版本,两点注意 根据业界规则,偶数为稳定版,如1.6.X,奇数为开发版,如1.7.X 32bit的mongodb最大只能存放2G的数据,64bit就没有限制 到官网,选择合适的版本下载 解压 tar -zxvf mongodb-linux-x86_64-ubuntu1604 ...
分类:数据库   时间:2020-06-23 15:08:22    阅读次数:55
2531条   上一页 1 ... 12 13 14 15 16 ... 254 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!