Docker版本 docker-ce.x86_64 # 社区版 docker-ee # 企业版 docker镜像站:https://hub.docker.com/ Kubernetes:https://kubernetes.io/zh/ 阿里云镜像站:https://developer.aliyun ...
分类:
Web程序 时间:
2021-03-11 12:07:03
阅读次数:
0
按英文的字面意思就比较好理解了: 常量指针:pointer to const 字面意思:指向常量的指针 指针常量:const pointer 字面意思:指针本身是个常量 看一段代码: char hello[6] = "hello"; char world[6] = "world"; const ch ...
分类:
编程语言 时间:
2021-03-10 12:55:03
阅读次数:
0
在VS2017 X64下加载NIDAQmx 报error LNK2019,是加载的lib路径问题 不要使用下面目录的库 C:\Program Files (x86)\National Instruments\NI-DAQ\DAQmx ANSI C Dev 而要使用以下目录的库 C:\Program ...
分类:
其他好文 时间:
2021-03-09 13:44:36
阅读次数:
0
既然我们这一节要说的是线性表与链表的内容,那么肯定要对数据结构的概念有一个认识。首先,数据结构一般分为逻辑结构、物理结构,逻辑结构指的是数据对象元素之间的相互关系,物理结构一般指的是数据的存储结构。逻辑结构主要包括集合结构、线性结构、树形结构、图形结构,物理结构主要有链式存储和线性存储。在数据结构的 ...
分类:
其他好文 时间:
2021-03-09 13:33:29
阅读次数:
0
一、前置条件 启动es 二、安装kibana 安装 tar xf kibana-7.11.1-darwin-x86_64.tar.gz -C /Applications 启动 bin/kibana 浏览器查看 http://localhost:5601/ 三、deltools http://loca ...
分类:
其他好文 时间:
2021-03-08 13:15:11
阅读次数:
0
问题 输入两个链表,找出它们的第一个公共节点。 示例 解答 class Solution { public: ListNode *getIntersectionNode(ListNode *headA, ListNode *headB) { ListNode *curA = headA, *curB ...
分类:
其他好文 时间:
2021-03-06 14:52:36
阅读次数:
0
[云计算]OpenStack All in one 单节点部署(Packstack安装) 1. 虚拟机创建 CentOS 7 最小化版本: https://mirrors.aliyun.com/centos/7.9.2009/isos/x86_64/CentOS-7-x86_64-Minimal-2 ...
分类:
其他好文 时间:
2021-03-05 13:09:01
阅读次数:
0
一、项目介绍 实现点击按钮随机出现不同人的名字,二次点击停止在某个人名字之上,三次点击继续随机出现 二、项目逻辑 随机 区分单次二次多次点击 是停止还是继续随机 三、项目实现 — 代码 style <style> #oname{width: 300px;height: 100px;border: 1 ...
分类:
其他好文 时间:
2021-03-04 13:23:19
阅读次数:
0
Should criminals be punished with lengthy jail terms or re-educated and rehabilitated, using community service programs for instance, before being rei ...
分类:
其他好文 时间:
2021-03-03 12:18:12
阅读次数:
0
1. 基础的协程 以 async def 开始声明一个函数 创建事件循环,并添加协程对象(Corountine)来执行 async def test(): # 声明一个协程函数 test asyncio.ensure_future(obj) # 将协程对象转变成 future asyncio.gat ...
分类:
编程语言 时间:
2021-03-02 11:44:41
阅读次数:
0