码迷,mamicode.com
首页 >  
搜索关键字:collections deque counter    ( 12297个结果
依赖注入
1.新建两个文件 interface ICounter { int Get(); } public class Counter : ICounter { int i ; public int Get() { return i++; } } 2.启动时注册 //单例模式 services.AddSin ...
分类:其他好文   时间:2020-05-30 12:31:51    阅读次数:61
Unity 自动搜索最优路径方式
通过寻找本物体到达目标物体的最优路径考虑的通过搜索所以离自己最近的路径,通过最近路径到达终点路径过程中最近的路径,反复搜索最近到达终点 using System.Collections;using System.Collections.Generic;using UnityEngine;using ...
分类:编程语言   时间:2020-05-29 23:38:27    阅读次数:125
How to directly initialize a Map/List/Set
1. 只读的、单元素的容器类 Set<String> singleton = Collections.singleton("set"); List<String> singletonList = Collections.singletonList("List"); Map<String, Strin ...
分类:其他好文   时间:2020-05-29 12:07:55    阅读次数:79
Collections.sort方法
#新建ArrayList来用Collection.sort(ArrayList) T类型对象要重载compareTo https://www.jianshu.com/p/32f9578b9acc ...
分类:其他好文   时间:2020-05-28 19:25:08    阅读次数:55
Ansible API和自定义module
1 #!/usr/bin/env python 2 3 import json 4 import shutil 5 from ansible.module_utils.common.collections import ImmutableDict 6 from ansible.parsing.dat ...
分类:Windows程序   时间:2020-05-28 00:50:30    阅读次数:103
34.winform之打开文件对话框
效果 实现 代码 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.IO; using ...
分类:Windows程序   时间:2020-05-27 20:32:05    阅读次数:88
流畅的Python-序列构成的数组
内置序列类型概览 容器序列: list、tuple和collections.deque这些序列能存放不同类型的数据 扁平序列: str、bytes、bytearray、memoryview和array.array, 这类序列只能容纳一种类型 1. bytearry(): 返回一个新字节数组。这个数组 ...
分类:编程语言   时间:2020-05-26 22:01:52    阅读次数:82
Task
参考 async和await 1、不是说 async Task<int>放在这个修饰的执行的操作或方法是异步的,而是在这个修饰方法里面有await修饰的才是异步的 using Newtonsoft.Json; using System; using System.Collections.Generi ...
分类:其他好文   时间:2020-05-26 12:13:26    阅读次数:55
swift5.x 类、结构体、枚举
```Swift//// ViewController7.swift// swiftT//// Created by wjwdive on 2020/5/20.// Copyright © 2020 wjwdive. All rights reserved.//import UIKitclass V... ...
分类:编程语言   时间:2020-05-25 17:43:43    阅读次数:56
c#生成base64编码的图片验证码
using System; using System.Collections.Generic; using System.Drawing; using System.Drawing.Drawing2D; using System.Drawing.Imaging; using System.IO; u ...
分类:Windows程序   时间:2020-05-25 12:18:32    阅读次数:105
12297条   上一页 1 ... 39 40 41 42 43 ... 1230 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!