码迷,mamicode.com
首页 >  
搜索关键字:collections    ( 9831个结果
ASP.NET员工管理系统简易分了层主要只是就一个传值和CRUD
实体类 using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace EmpPrj.Entity { public class y_EmployeeEntity { pu ...
分类:Web程序   时间:2020-02-22 21:43:00    阅读次数:97
Titer软件学习(Translation Initiation siTE detectoR)
Titer Source Codes lnk: https://github.com/zhangsaithu/titer 函数: collections.namedtuple()函数:https://www.cnblogs.com/jiangbingyang/p/7455853.html numpy ...
分类:其他好文   时间:2020-02-22 19:50:56    阅读次数:79
C# .net 压缩图片 缩略图
C#压缩图片不失真 using System; using System.Collections.Generic; using System.Drawing; using System.Drawing.Imaging; using System.IO; using System.Linq; usin ...
分类:Windows程序   时间:2020-02-22 00:08:14    阅读次数:104
sort方法和自定义比较器的写法
摘要 在做一些算法题时常常会需要对数组、自定义对象、集合进行排序. 在java中对数组排序提供了 方法,对集合排序提供 方法。对自定义对象排序时要自己重写比较器,对象数组则调用Arrays.sort(),对象集合则调用Collections.sort()。两个方法默认都是升序,也可以重写比较器,实现 ...
分类:其他好文   时间:2020-02-21 14:27:20    阅读次数:105
unity修改所选路径下的,对象的importer属性
遍历文件夹下的对象,并修改其导入设置: using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEditor; using System.IO; using System.Di ...
分类:编程语言   时间:2020-02-19 20:38:32    阅读次数:225
队列模拟递归遍历目录(广度遍历)
import os import collections def getALLDir(path): queue = collections.deque()#空的 queue.append(path)#进队 while len(queue) != 0: dirPath = queue.popleft( ...
分类:其他好文   时间:2020-02-19 17:27:29    阅读次数:72
DotSpatial 自定义MapFunction_mapMain中绘制线(未添加到图层中)
using DotSpatial.Controls; using DotSpatial.Symbology; using GeoAPI.Geometries; using System; using System.Collections.Generic; using System.Drawing; ...
分类:其他好文   时间:2020-02-19 13:10:42    阅读次数:122
Cloud开发动态列的简单账表
业务场景:客户需要根据过滤条件的不同显示不同的列。如下方式可以实现动态的列名。 using System;using System.Collections.Generic;using System.Linq;using System.Text;using Kingdee.BOS.Core.Repor ...
分类:其他好文   时间:2020-02-18 20:42:55    阅读次数:99
Cloud保存时提示消息是否保存,点是保存,点否不保存。
业务场景:保存时,检查上游的销售出库单数量,和发货通知单数量是否一致,不一致时提示信息,点是则保存,点否不保存。 using System;using System.Collections.Generic;using System.Linq;using System.Text;using Kingd ...
分类:其他好文   时间:2020-02-18 20:42:42    阅读次数:127
out关键字
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespace _13_out参数练 ...
分类:其他好文   时间:2020-02-17 20:18:50    阅读次数:78
9831条   上一页 1 ... 45 46 47 48 49 ... 984 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!