以下内容均摘抄自他人博客,正确性有待考察,请以质疑的态度阅读学习,若有错误请留言指正 stl用过哪些容器? Vector:动态数组 List:双向链表 Deque:与vector类似,但支持双端操作。 Set:关联容器 集合,底层红黑树实现。 Map:关联容器 键值对,底层红黑树实现。 Stack: ...
分类:
其他好文 时间:
2020-03-14 19:59:21
阅读次数:
59
PC Register介绍 JVM中的程序计数器(Program Counter Register),Resgiter 的命名原于CPU的寄存器,寄存器存储指令相关的现场信息。CPU只有把数据装载到寄存器才能够运行。 这里,并非是广义所指的物理寄存器,或许将其翻译为PC计数器(或指令计数器)会更加贴 ...
分类:
其他好文 时间:
2020-03-14 18:27:48
阅读次数:
84
1.队列是只允许在一端进行插入 在另一端进行删除的线性表 2.队列先进先出 //队列的链式存储结构(插进去 吐出来) typedef struct QNode { ElemType data; struct QNode *next; }QNode, *QueuePrt; typedef struct ...
分类:
编程语言 时间:
2020-03-14 12:48:02
阅读次数:
67
https://developers.arcgis.com/labs/pro/build-a-map-layout/ using System; using System.Collections.Generic; using System.Linq; using System.Text; using ...
分类:
其他好文 时间:
2020-03-14 01:10:44
阅读次数:
115
using System; using System.Collections.Generic; using System.Linq; //using System.Windows; //using System.Windows.Forms; using System.Text; using Syst ...
分类:
其他好文 时间:
2020-03-12 12:55:51
阅读次数:
84
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using ArcGIS.Core.CIM; using ArcGI ...
分类:
其他好文 时间:
2020-03-11 23:30:43
阅读次数:
92
using System; using System.Collections.Generic; using System.Linq; //using System.Windows; //using System.Windows.Forms; using System; using System.Co ...
分类:
其他好文 时间:
2020-03-11 19:27:29
阅读次数:
56
using System; using System.Collections.Generic; using System.Linq; //using System.Windows; //using System.Windows.Forms; using System; using System.Co ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; using System ...
分类:
其他好文 时间:
2020-03-11 15:32:14
阅读次数:
137
VM 概念模型 1:程序计数器(Program Counter Register) (1)比喻:可以看做为线程所执行的字节码的行号显示器 (2)与线程的关系:每个线程都有自己的程序计数器 (3)作用:存放当前线程正在执行的虚拟机字节码指令地址 2:虚拟机栈(VM Stack) 帧栈 (1) 释义:每 ...
分类:
其他好文 时间:
2020-03-11 01:09:53
阅读次数:
53