摘要: 1.为啥有AB包? 因为资源需要更新,避免更新一次打包一次,动态修改 eg:展馆(pc): 1.A-->ABLOAD-->中国 2.B-->ABLOAD-->朝鲜 3.C-->ABLOAD-->俄罗斯 2.AB打包注意啥? 依赖关系,找依赖关系应该找到对应的平台 3.打包策略是分场景打包 若文件被文 阅读全文
posted @ 2018-11-07 19:19 0ooooooooooooooooo0 阅读(182) 评论(0) 推荐(0)
摘要: 先进后出 栈是与队列非常类似的另一个容器,只是要使用不同的方法访问栈。最后添加到栈中的元素会最先读取。栈是一个后进先出(Lastin,Firstout,LIFO)的容器。栈使用System.Collections.Generic命名空间中的泛型类Stack<T>实现。 栈的成员 Count:返回栈中 阅读全文
posted @ 2018-11-01 10:38 0ooooooooooooooooo0 阅读(93) 评论(0) 推荐(0)
摘要: 队列是其元素以先进先出的方式来处理的集合,即先进队列的元素先出队列. 队列使用System,Collection.Generic命名空间中的泛型类Queue<T>实现. Count:返回队列中元素个数 Enqueue:在队列一端添加一个元素 Dequeue:在队列头部读取和删除元素,不能重新设置队列 阅读全文
posted @ 2018-11-01 10:25 0ooooooooooooooooo0 阅读(129) 评论(0) 推荐(0)
摘要: using System.Collections;using System.Collections.Generic;using UnityEngine; public class LoadMan : MonoBehaviour { // Use this for initialization pub 阅读全文
posted @ 2018-10-31 19:50 0ooooooooooooooooo0 阅读(207) 评论(0) 推荐(0)
摘要: using System.Collections;using System.Collections.Generic;using UnityEngine; public class Load : MonoBehaviour { // Use this for initialization void S 阅读全文
posted @ 2018-10-31 19:44 0ooooooooooooooooo0 阅读(116) 评论(0) 推荐(0)
摘要: 1.1、1、2、3、5、8、13、21、34...... 求第30位数是多少int a=1,b=1;For(int i=0;i<28;i++){Int temp=a+b;a=b;b=temp;}Cw(b); 2.实现一个冒泡排序法int []arr=new int [];for(int i=0;i< 阅读全文
posted @ 2018-10-31 19:37 0ooooooooooooooooo0 阅读(187) 评论(0) 推荐(0)
摘要: static void Main(string[] args) { int[] array = { 0, 54, 6, 79, 15, 35, 45 }; Array.Sort(array); Console.WriteLine("数字排序后:"); foreach (var i in array) 阅读全文
posted @ 2018-10-31 19:33 0ooooooooooooooooo0 阅读(153) 评论(0) 推荐(0)
摘要: console.writeline("请输入你要排序的数字,并用,隔开"); string _s=console.readline(); string[] _sArr=_s.split(','); int _nLength=_sArr.length; int [] _mArr=new int [_n 阅读全文
posted @ 2018-10-31 19:29 0ooooooooooooooooo0 阅读(138) 评论(0) 推荐(0)
摘要: //链表1 public class Node { public int Data; public Node Next; public Node() { Data=default(int); Next=null; } public Node(int value) { Data=value; Next 阅读全文
posted @ 2018-10-31 19:14 0ooooooooooooooooo0 阅读(144) 评论(0) 推荐(0)
摘要: class Program<T> { private int _flag; private T[] _ints; //添加元素到末尾 public void AddItem(T gg) { if(_flag>_ints.length) { console.writeline("溢出来了,弱智"); 阅读全文
posted @ 2018-10-31 18:54 0ooooooooooooooooo0 阅读(186) 评论(0) 推荐(0)