码迷,mamicode.com
首页 >  
搜索关键字:collections deque counter    ( 12297个结果
【Java新特性】Lambda表达式典型案例,你想要的的都在这儿了!!
写在前面 不得不说,有些小伙伴的学习热情真高,学完了Lambda表达式的语法,想来几个典型案例再强化下。于是问冰河能否给几个Lambda表达式的典型使用示例。于是乎,便有了这篇文章。 案例一 需求 调用Collections.sort()方法,通过定制排序比较两个Employee(先比较年龄,年龄相 ...
分类:编程语言   时间:2020-05-07 00:36:42    阅读次数:80
Composition API
介绍 Composition API的主要思想是,我们将它们定义为从新的 setup 函数返回的JavaScript变量,而不是将组件的功能(例如state、method、computed等)定义为对象属性。 案例对比 下面是一个经典的vue2的计数器案例. //Counter.vue export ...
分类:Windows程序   时间:2020-05-06 21:41:40    阅读次数:476
公司的Excel导出
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using FineUICore; using Microsoft.AspNetCore.Authoriz ...
分类:其他好文   时间:2020-05-06 21:34:28    阅读次数:86
C#串口通讯,复制粘贴就可用,仅仅介绍怎样最快的搭建一个串口通讯,异常拦截等等需要自己加上
原文:C#串口通讯,复制粘贴就可用,仅仅介绍怎样最快的搭建一个串口通讯,异常拦截等等需要自己加上 using System; using System.Collections.Generic; using System.IO.Ports; using System.Text; //串口通讯类 pub... ...
分类:Windows程序   时间:2020-05-06 01:31:04    阅读次数:100
NLP gensim 相似度计算
```python from collections import defaultdict from gensim import corpora import jieba from gensim import similarities import re class Similarity: def ... ...
分类:其他好文   时间:2020-05-06 01:08:10    阅读次数:52
WPF 加减乘除计算器
原文:WPF 加减乘除计算器 小玩意,毫无任何难度。 cs: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; usi... ...
分类:Windows程序   时间:2020-05-06 01:00:22    阅读次数:146
python线性数据结构之栈的实现
数据结构:带有结构特性的数据元素的集合。 常见的数据结构:集合,线性结构,树形结构,图形结构等。 线性结构:表中各个结点具有线性关系。 常见的线性结构:栈Stack、队列Queue、双端队列Deque和列表List 栈Stack:一次有序的数据项集合,在栈中,数据项的加入和移除都仅发生在同一端。这一 ...
分类:编程语言   时间:2020-05-05 23:36:13    阅读次数:80
C# 建造者设计模式
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespace FactoryMod ...
分类:Windows程序   时间:2020-05-05 18:16:57    阅读次数:83
C# 抽象工厂的设计模式
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FactoryMode { public abs ...
分类:Windows程序   时间:2020-05-05 12:41:03    阅读次数:90
数据结构与算法 (01)
序列拆包 unpack, 组包 package, 队列 deque 应用. ...
分类:编程语言   时间:2020-05-05 00:27:06    阅读次数:74
12297条   上一页 1 ... 44 45 46 47 48 ... 1230 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!