using System.Collections; using System.Collections.Generic; using UnityEngine; public class Cam : MonoBehaviour { void Start() { } void Update() { if ...
分类:
移动开发 时间:
2020-05-11 15:26:13
阅读次数:
152
if 语句在行内 连接 下面的最后一种方式在绑定两个不同类型的对象时显得很酷。 计算技巧 注意浮点数的除法 数值比较 两个列表同时迭代 带索引的列表迭代 列表推导 已知一个列表,刷选出偶数列表方法: 用下面的代替 字典推导 初始化列表的值 将列表转换成字符串 从字典中获取元素 不要用下列的方式 获取 ...
分类:
编程语言 时间:
2020-05-11 10:33:31
阅读次数:
76
展开微信小程序访问Token安全验证的API接口API//添加一个自定义过滤器using Newtonsoft.Json;using System;using System.Collections.Generic;using System.IO;using System.Linq;using Sys ...
分类:
微信 时间:
2020-05-11 01:17:01
阅读次数:
446
一、栈 栈(stack),有些地方称为堆栈,但是不能叫堆,是一种容器,可存入数据元素、访问元素、删除元素,它的特点在于只能允许在容器的一端(称为栈顶端指标,英语:top)进行加入数据(英语:push)和输出数据(英语:pop)的运算。 没有了位置概念,保证任何时候可以访问、删除的元素都是此前最后存入 ...
分类:
编程语言 时间:
2020-05-11 01:13:09
阅读次数:
78
基于单列集合实现 package com.demo03; import java.util.ArrayList; import java.util.Collections; public class doudizhu { public static void main(String[] args) ...
分类:
其他好文 时间:
2020-05-11 00:42:01
阅读次数:
80
typename:元组名称 field_names: 元组中元素的名称 rename: 如果元素名称中含有 python 的关键字,则必须设置为 rename=True verbose: 默认就好 import collections 两种方法来给 namedtuple 定义方法名 User = c ...
分类:
其他好文 时间:
2020-05-10 21:27:31
阅读次数:
82
ArrayList和LinkedList和Vactor的区别 相同点: 都实现了List接口 都是有序的、可以重复的(这是List接口的特性) 都支持迭代器操作 区别ArrayListLinkedListVactor 实现的接口不同 没有实现Queue,Deque接口,不支持队列操作 实现了Queu ...
分类:
其他好文 时间:
2020-05-09 21:46:29
阅读次数:
94
题目: 解答: 1 class MaxQueue { 2 queue<int> q; 3 deque<int> d; 4 public: 5 MaxQueue() { 6 } 7 8 int max_value() 9 { 10 if (d.empty()) 11 return -1; 12 ret ...
分类:
其他好文 时间:
2020-05-09 21:39:21
阅读次数:
57
1、采用TCP自定义协议通讯,协议由02(byte) + json字符串(byte[]) +03(byte)组成。 Socket_Client.cs 服务端using System;using System.Collections.Generic;using System.Net;using Sys ...
1. 依赖包 MongoDB.Driver; MongoDB.Json; MongoDB.Bson; 2. 上代码 1 using MongoDB.Driver; 2 using System; 3 using System.Collections.Generic; 4 using System.T ...
分类:
数据库 时间:
2020-05-09 15:25:28
阅读次数:
95