码迷,mamicode.com
首页 >  
搜索关键字:generic    ( 7184个结果
C++ 模板简介
泛型程序设计(generic programming)是一种算法在实现时不指定具体要操作的数据的类型的程序设计方法。所谓“泛型”指的是算法只要实现一遍,就能适用于多种数据类型。泛型程序设计方法的优势在于能够减少重复代码的编写。最成功的应用就是 C++ 的标准模板库(STL)。在 C++ 中,模板分为 ...
分类:编程语言   时间:2020-02-27 16:19:13    阅读次数:86
c#音乐播放器
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.IO; using System.Li ...
分类:Windows程序   时间:2020-02-27 00:58:42    阅读次数:80
权限组件
[TOC] 权限组件 重点 1 权限规则 2 如何自定义权限 3 我们一般在视图类中局部配置 drf 提供的权限类,但是也会自定义权限类完成局部配置 自定义权限类 1 自定义权限类,继承 BasePermission 类 2 必须重写 def has_permission(self, request ...
分类:其他好文   时间:2020-02-25 20:17:05    阅读次数:47
AccessHelper.cs
/* access 连接工具类 */ using System; using System.Collections.Generic; using System.Text; using System.Data.SqlClient; using System.Data; using System.Con ...
分类:数据库   时间:2020-02-23 20:43:33    阅读次数:78
Enum, Generic and Templates
文 Akisann@CNblogs / zhaihj@Github 本篇文章同时发布在Github上:https://zhaihj.github.io/enum generic and templates.html 在很久之前,我曾经 "写过(或者说,翻译过)一篇关于OOC里泛型的博客" ,在那个时 ...
分类:编程语言   时间:2020-02-23 19:53:58    阅读次数:66
SqlSugarHelper.cs
using System; using System.Collections.Generic; using System.Configuration; using System.Data; using System.Linq; using System.Linq.Expressions; using ...
分类:数据库   时间:2020-02-23 19:53:14    阅读次数:293
NPOIHelper.cs
using System; using System.Collections.Generic; using System.Data; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks ...
分类:其他好文   时间:2020-02-23 19:50:00    阅读次数:63
sql 五大对象的应用
using System; using System.Data; using System.Data.SqlClient; using System.Configuration; using System.Text; using System.Collections.Generic; using M ...
分类:数据库   时间:2020-02-23 11:31:24    阅读次数:76
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
Java泛型
Java 泛型(generics)是 JDK 5 中引入的一个新特性, 泛型提供了编译时类型安全检测机制,该机制允许程序员在编译时检测到非法的类型。 泛型的本质是参数化类型,也就是说所操作的数据类型被指定为一个参数。 eg: 假定我们有这样一个需求:写一个排序方法,能够对整型数组、字符串数组甚至其他 ...
分类:编程语言   时间:2020-02-22 11:57:59    阅读次数:74
7184条   上一页 1 ... 31 32 33 34 35 ... 719 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!