码迷,mamicode.com
首页 >  
搜索关键字:generic    ( 7184个结果
Java之泛型
1、为什么要有泛型Generic? 2、 总结 Java中的泛型,只在 编译阶段有效 。在编译过程中,正确检验泛型结果后,会将泛型的相关信息擦出,并且在对象进入和离开方法的边界处添加类型检查和类型转换的方法。也就是说,泛型信息 不会进入到运行时阶段。 3、泛型的使用 1..泛型类 2.泛型方法 3. ...
分类:编程语言   时间:2019-12-12 22:21:20    阅读次数:120
PIE SDK的矢量裁剪矢量文件的Algo
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using PIE.SystemAlgo;using PIE.Carto;us ...
分类:其他好文   时间:2019-12-12 18:02:12    阅读次数:96
ASP.NET Core使用HttpClient的同步和异步请求
原文:ASP.NET Core使用HttpClient的同步和异步请求 using System; using System.Collections.Generic; using System.Collections.Specialized; using System.IO; using Syste... ...
分类:Web程序   时间:2019-12-12 15:13:20    阅读次数:83
C# 线程同步代码
#define CODE1 using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Runtime.CompilerServices; usin ...
分类:编程语言   时间:2019-12-12 01:13:49    阅读次数:95
C#只读属性
using System; using System.Collections.Generic; using System.Text; namespace 面向对象 { class Person { //属性不可更改 public string FirstName { get; } public st ...
分类:Windows程序   时间:2019-12-11 21:09:29    阅读次数:90
NPOI导出百万(必须保证你C盘存储空间够大,不然导出失败【数据量百万存储的空间需求大】)
1、NPOI版本为2.4.1 2、 using NPOI.HSSF.UserModel; using NPOI.SS.UserModel; using NPOI.XSSF.UserModel; using System; using System.Collections.Generic; using ...
分类:其他好文   时间:2019-12-11 14:44:25    阅读次数:103
drf 分页器组件
[TOC] 一、使用drf分页器 drf 的 这个视图基类提供了三种分页器:但是这里只列举两个,个人认为,最后一个没什么用 类 (常用)作用: 一页显示的条数 类 作用: 从offset开始往后显示limit条 类 作用: 只是将url中做了一层加密,其他的没有不同,但必须和OrderingFilt ...
分类:其他好文   时间:2019-12-11 00:49:26    阅读次数:137
C# FTP文件上传下载
1.服务端采用Serv-U FTP Server作为FTP服务器端软件。 2.客户端采用开源库FluentFTP 客户端代码 using FluentFTP; using System; using System.Collections.Generic; using System.IO; using ...
分类:Windows程序   时间:2019-12-10 15:06:09    阅读次数:148
c#之泛型详解(Generic)
这篇文章主要来讲讲c#中的泛型,因为泛型在c#中有很重要的位置,对于写出高可读性,高性能的代码有着关键的作用。 一、什么是泛型? 泛型是 2.0 版 C# 语言和公共语言运行库 (CLR) 中的一个非常重要的新功能。 我们在编程程序时,经常会遇到功能非常相似的模块,只是它们处理的数据不一样。但我们没 ...
分类:Windows程序   时间:2019-12-10 00:27:29    阅读次数:137
A*算法【拼图游戏】
数据结构 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace 拼图 { /// <summary> ...
分类:编程语言   时间:2019-12-09 23:15:11    阅读次数:171
7184条   上一页 1 ... 45 46 47 48 49 ... 719 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!