1.栈(Stack) 栈的特点是先进后出,相当于你往桌子上放书本,先放上去的在下边。栈的常用方法:push,让一个元素放到栈顶 pop:移除栈顶元素,并且返回被移除的元素。 peek:返回栈顶元素。 length:栈的长度 2.队列(queue) 队列的特点和栈有点相同,不过队列是先进先出,和排队买 ...
分类:
其他好文 时间:
2021-07-01 17:06:48
阅读次数:
0
//-n 预览需要删除版本控制的文件列表 git rm -r -n --cached "vendor" //执行删除命令 git rm -r --cached "vendor" //添加文件到.gitignore //提交git commit -m "remove vendor" //提交到远程服务 ...
分类:
其他好文 时间:
2021-07-01 17:03:23
阅读次数:
0
osmdroid's MapView is basically a replacement for Google's MapView class. First of all, create your Android project, and follow HowToMaven if you're u ...
分类:
移动开发 时间:
2021-07-01 16:54:55
阅读次数:
0
current status: We have a remote repository and a local project repository with no git configured. We want to push to remote and create new branch. Pr ...
分类:
其他好文 时间:
2021-07-01 16:24:13
阅读次数:
0
在Android中,常见的XML解析器分别为SAX解析器、DOM解析器和PULL解析器,其中PULL解析器小巧轻便,解析速度快,简单易用,非常适合在Android移动设备中使用,Android系统内部在解析各种XML时也是用PULL解析器,今天我来介绍一下PULL解析器 1 package com. ...
分类:
移动开发 时间:
2021-06-30 18:31:34
阅读次数:
0
Description:Here will use pictures and text to report the statistics of the number of subscribers. Total number of subscribers:4243 1.toutiao(今日头条)Dot ...
分类:
其他好文 时间:
2021-06-30 18:09:06
阅读次数:
0
清理git提交记录并不能给“瘦身” 上周发现gitlab同步到线上的主服务器cpu和内存报警。 一查发现是隐藏目录 .git 过大导致的,导致每分钟同步卡死, 我其实有点怀疑是同步脚本中git命令导致的,要不就是下面的同步命令(每1分钟跑一次);要不就是每5分钟去git目录跑一次的git statu ...
分类:
其他好文 时间:
2021-06-30 18:05:44
阅读次数:
0
1. 登录github并创建一个仓库 2. 安装git客户端 2.1 下载git 官网:git-scm.com/download/ 镜像:https://npm.taobao.org/mirrors/git-for-windows/?utm_source=qq&utm_medium=social&u ...
分类:
Web程序 时间:
2021-06-30 18:00:40
阅读次数:
0
ProxySQL可以实现多种方式的路由:基于ip/port、username、schema、SQL语句。其中基于SQL语句的路由是按照规则进行匹配的,匹配方式有hash高效匹配、正则匹配,还支持更复杂的链式规则匹配。 角色主机IPserver_id数据状态 Proxysql 10.2.83.140 ...
分类:
数据库 时间:
2021-06-30 17:39:59
阅读次数:
0
springcloud框架项目目录结构 项目使用的其他软件说明 项目使用的其他软件,比如redis,nacos,mysql,rabbitmt,emqx,nexus等都是外置的,不部署到k8s中 流程示意图 编写Dockerfile文件 需要在项目每个模块的根目录下编写Dockerfile文件 Doc ...
分类:
编程语言 时间:
2021-06-30 17:39:23
阅读次数:
0