码迷,mamicode.com
首页 >  
搜索关键字:map hashmap linkedhashmap map.entry collections 可变参数    ( 41027个结果
计应191 西 张海鹏 第三组
using system;using system.collections.generic;using system.linq;using system.text;using system.threading.tasks; namespace consoleapplication3{ class p ...
分类:其他好文   时间:2021-06-02 19:26:24    阅读次数:0
计应191西 李映玑
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u ...
分类:其他好文   时间:2021-06-02 19:20:50    阅读次数:0
计应191一组(西)侯金鹏
一、结果呈现1. 界面设计窗体界面设计:两个label标签(一个显示题目,一个显示正确率),一个文本框textBox(输入答案),一个列表框listBox(保存做过的题目)。 2. 运行结果呈现 复制一下啊 using System; using System.Collections.Generic ...
分类:其他好文   时间:2021-06-02 19:20:03    阅读次数:0
集合最后一章 HashMap Hashtable Properties 自平衡二叉树 集合工具类 以及总结各个集合
重写hashCode和equals (1)向Map集合中存,以及从Map集合中取,都是先调用key的hashCode方法,然后调用equals方法! equals方法有可能调用,也有可能不调用 往里面存的时候会先调用Hashcode方法,得到Hash值 拿put(k,v)举例,什么时候equals不 ...
分类:其他好文   时间:2021-06-02 18:58:20    阅读次数:0
16 模板与泛型编程
##1. 定义模板 ###1.1 函数模板 ###1.2 类模板 ###1.3 模板参数 ###1.4 成员模板 ###1.5 控制实例化 ###1.6 效率与灵活性 ##2. 模板实参推断 ###2.1 类型转换与模板类型参数 ###2.2 函数模板显式实参 ###2.3 尾置返回类型与类型转换 ...
分类:其他好文   时间:2021-06-02 18:43:51    阅读次数:0
迭代器对象(Iterator)和可迭代对象(Itetable)
可迭代对象实现__iter__方法,返回迭代器对象 迭代器对象实现__iter__方法,返回迭代器对象,实现__next__方法,进行迭代操作 自定义实现迭代器进行for循环实例: import requestsfrom collections import Iterable, Iterator# ...
分类:其他好文   时间:2021-06-02 18:30:00    阅读次数:0
redis那些数据类型?分别在那些场景使用
(1)string 这是最基本的类型了,没啥可说的,就是普通的set和get,做简单的kv缓存 例子:常规计数:微博数,粉丝数等 (2)hash 这个是类似map的一种结构,这个一般就是可以将结构化的数据,比如一个对象(前提是这个对象没嵌套其他的对象)给缓存在redis里,然后每次读写缓存的时候,可 ...
分类:其他好文   时间:2021-06-02 18:16:17    阅读次数:0
dart中list的map方法获取index
只需要index list.asMap().keys.map((index) { return something; } List<String> list = ['a', 'b', 'c', 'd']; print(list.asMap()); // {0: a, 1: b, 2: c, 3: d ...
分类:其他好文   时间:2021-06-02 17:42:11    阅读次数:0
Java使用ArrayList、HashMap实现三人斗地主
ArrayList实现 code import java.util.ArrayList; import java.util.Collections; public class PokerDemo { public static void main(String[] args) { // 使用Arra ...
分类:编程语言   时间:2021-06-02 16:52:04    阅读次数:0
Python高阶函数和装饰器
高阶函数 能够把函数当做参数传递的函数被称为高阶函数。 map函数 把传入的函数func作用到iterable中的每个元素中。 map(func, iterable) 参数: func:函数(内置函数,自定义函数) iterable:可迭代对象 返回值: 迭代器 示例: list1 = [1, 2, ...
分类:编程语言   时间:2021-06-02 15:38:34    阅读次数:0
41027条   上一页 1 ... 11 12 13 14 15 ... 4103 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!