码迷,mamicode.com
首页 >  
搜索关键字:generic    ( 7184个结果
对象池的简单使用
using System.Collections; using System.Collections.Generic; using UnityEngine; public class DemoPool : MonoBehaviour { //要实例的物体 public GameObject mons... ...
分类:其他好文   时间:2019-01-08 00:18:24    阅读次数:132
STL源码剖析(一)
SLT简介 STL(Standard Template Library),即标准模板库,是一个高效的C++程序库。包含了诸多在计算机科学领域里常用的基本数据结构和基本算法。为广大C++程序员们提供了一个可扩展的应用框架,高度体现了软件的可复用性。其核心思想就是泛化编程(generic program ...
分类:其他好文   时间:2019-01-07 21:13:19    阅读次数:195
腾讯人脸识别api签名,演示demo
using System; using System.Collections.Generic; using System.Linq; using System.Net.Http; using System.Security.Cryptography; using System.Text; using... ...
分类:Windows程序   时间:2019-01-07 01:38:15    阅读次数:511
centos7安装mysql5.6
CentOS7上安装mysql5.6 (最好切换到root下操作!) 从 https://dev.mysql.com/downloads/mysql/5.6.html#downloads下载mysql-5.6.42-linux-glibc2.12-x86_64.tar.gz,适配操作系统选择Linu ...
分类:数据库   时间:2019-01-06 12:00:13    阅读次数:351
C#事件
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespace 简单事件练习 8 {... ...
分类:Windows程序   时间:2019-01-06 01:06:32    阅读次数:193
Linux下Zookeeper安装使用
1. 下载 下载地址,选择稳定的版本,比如3.4.13,beta为在测版本 2. 复制到任意的目录,解压 3. 修改配置文件 配置文件位于conf目录下,原配置文件为zoo_sample.cfg,更改为zoo.cfg才能被识别。 在配置文件末尾加上 : server.1=bogon:2888:388 ...
分类:系统相关   时间:2019-01-05 19:51:08    阅读次数:159
Unity角色对话
对话类 using System.Collections.Generic;using UnityEngine; [System.Serializable]public class word { public int state;//对应的剧情状态 public string[] sentence;/ ...
分类:编程语言   时间:2019-01-05 16:31:35    阅读次数:180
1.3
Effective C++ Scott Meyers Chapter 7. Templates and Generic Programming 1. Item 45: Use member function templates to accept "all compatible types". Co ...
分类:其他好文   时间:2019-01-05 00:10:33    阅读次数:217
C#可变参数params
``` C# using System.Collections; using System.Collections.Generic; using UnityEngine; public class TestParams:MonoBehaviour{ private void Start(){ tes... ...
分类:Windows程序   时间:2019-01-04 21:22:06    阅读次数:189
C#基础-第5章:基元类型、引用类型和值类型
5 本章内容: PS:以下代码以装箱和拆箱的说明居多 ...
分类:Windows程序   时间:2019-01-04 12:15:53    阅读次数:149
7184条   上一页 1 ... 81 82 83 84 85 ... 719 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!