码迷,mamicode.com
首页 >  
搜索关键字:collections    ( 9831个结果
分库、分表、分区的区别
1.1 分 很多技术都运用了分的编程思想,这里来举几个例子,这些都是分的思想 集中式服务发展到分布式服务 从Collections.synchronizedMap(x)到1.7ConcurrentHashMap再到1.8ConcurrentHashMap,细化锁的粒度的同时依旧保证线程安全 从Ato ...
分类:其他好文   时间:2020-05-12 20:50:28    阅读次数:79
翻转数组
在看Collections工具类代码时,发现翻转数组的逻辑,感觉很有趣。思想:折半交换 public static void main(String[] args) { // TODO Auto-generated method stub int[] n = new int[] {1,2,3,4,5 ...
分类:编程语言   时间:2020-05-12 15:25:49    阅读次数:63
Unity 模仿scene视图相机视角移动
using System.Collections; using System.Collections.Generic; using UnityEngine; public class Cam : MonoBehaviour { void Start() { } void Update() { if ...
分类:移动开发   时间:2020-05-11 15:26:13    阅读次数:152
微信小程序如何访问带有Token安全认证的API
展开微信小程序访问Token安全验证的API接口API//添加一个自定义过滤器using Newtonsoft.Json;using System;using System.Collections.Generic;using System.IO;using System.Linq;using Sys ...
分类:微信   时间:2020-05-11 01:17:01    阅读次数:446
基于集合实现斗地主发牌功能
基于单列集合实现 package com.demo03; import java.util.ArrayList; import java.util.Collections; public class doudizhu { public static void main(String[] args) ...
分类:其他好文   时间:2020-05-11 00:42:01    阅读次数:80
GCN实战
typename:元组名称 field_names: 元组中元素的名称 rename: 如果元素名称中含有 python 的关键字,则必须设置为 rename=True verbose: 默认就好 import collections 两种方法来给 namedtuple 定义方法名 User = c ...
分类:其他好文   时间:2020-05-10 21:27:31    阅读次数:82
C# Socket 处理 拆包、粘包
1、采用TCP自定义协议通讯,协议由02(byte) + json字符串(byte[]) +03(byte)组成。 Socket_Client.cs 服务端using System;using System.Collections.Generic;using System.Net;using Sys ...
分类:Windows程序   时间:2020-05-09 15:31:52    阅读次数:97
C# Mongodb 封装类
1. 依赖包 MongoDB.Driver; MongoDB.Json; MongoDB.Bson; 2. 上代码 1 using MongoDB.Driver; 2 using System; 3 using System.Collections.Generic; 4 using System.T ...
分类:数据库   时间:2020-05-09 15:25:28    阅读次数:95
【Java新特性】Lambda表达式典型案例,你想要的的都在这儿了!!
写在前面 不得不说,有些小伙伴的学习热情真高,学完了Lambda表达式的语法,想来几个典型案例再强化下。于是问冰河能否给几个Lambda表达式的典型使用示例。于是乎,便有了这篇文章。 案例一 需求 调用Collections.sort()方法,通过定制排序比较两个Employee(先比较年龄,年龄相 ...
分类:编程语言   时间:2020-05-07 00:36:42    阅读次数:80
公司的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
9831条   上一页 1 ... 29 30 31 32 33 ... 984 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!