码迷,mamicode.com
首页 >  
搜索关键字:do while循环    ( 14864个结果
[Bash] Read and Use JSON in Bash with jq
jq Bash, unfortunately, doesn’t ship with a command that can work with JSON natively. In this lesson, we’ll learn how to read and do basic queries on ...
分类:Web程序   时间:2021-02-15 12:41:34    阅读次数:0
docker部署prometheus + node_export + grafana(上)
一、查找镜像 1 docker search prometheus 2 docker search node-exporter 二、下载镜像 1 docker pull prom/prometheus 2 docker pull prom/node-exporter 三、验证下载的镜像是否存在 do ...
分类:其他好文   时间:2021-02-10 12:50:05    阅读次数:0
ArcPy函数-更新游标UpdateCursor
ArcGIS 帮助 10.2 摘要 UpdateCursor 函数创建一个用于更新或删除指定要素类、shapefile 和表中的行的游标。该游标将数据锁定保留至脚本完成或更新游标对象被删除时。 讨论 以迭代方式更新游标的方式有两种:for 循环或者 while 循环(通过游标的 next 方法返回下 ...
分类:其他好文   时间:2021-02-09 11:44:54    阅读次数:0
四、选择结构
第一章 流程控制 在一个程序执行的过程中,各条语句的执行顺序对程序的结果是有直接影响的。所以,我们必须清楚每条语句的执行流程。 而且,很多时候要通过控制语句的执行顺序来实现我们想要的功能。 1.1 流程控制语句分类 顺序结构 分支结构(if, switch) 循环结构(for, while, do… ...
分类:其他好文   时间:2021-02-08 12:24:05    阅读次数:0
Java 循环结构 - for, while 及 do...while
文章搬运,原文链接 Java 循环结构 - for, while 及 do...while 顺序结构的程序语句只能被执行一次。如果您想要同样的操作执行多次,,就需要使用循环结构。 Java中有三种主要的循环结构: while 循环 do…while 循环 for 循环 在Java5中引入了一种主要用 ...
分类:编程语言   时间:2021-02-08 12:04:58    阅读次数:0
vue watch监听对象及对应值的变化
rule:{ name:"", age:"" } watch:{ rule:{ handler:function(){ //do something }, deep:true } } deep设置为true的意思是修改rule中任何一个属性,都会执行handler这个方法,但是这样消耗比较大,对象嵌 ...
分类:其他好文   时间:2021-02-03 10:56:49    阅读次数:0
Personal data protection
Why personal data matters? Why protect personal data? What is GPDR? What do companies rish when they don't play by the rules? What is personal data? T ...
分类:其他好文   时间:2021-02-03 10:36:39    阅读次数:0
bat 脚本 延时,读取文件
### 读取文件 ping 127.0.0.1 -n 1 > tmp.txtfor /f i in (tmp.txt) do ( echo %i% ) ### 延时 借用ping的延时, 当前这个延时不精准,只能是大概有延时1秒的效果 。 ping 0 -n 2 > nul ...
分类:其他好文   时间:2021-02-02 11:26:28    阅读次数:0
shell 解压当前目录所有zip文件
code macname@MacdeMacBook-Pro zipfiles % cat test.sh #!/bin/bash ZIP_FILES=$(ls *.zip) for zip_file in $ZIP_FILES; do unzip $zip_file done macname@Mac ...
分类:系统相关   时间:2021-02-01 11:49:14    阅读次数:0
range()函数的使用、while循环、for-in循环等
一、range()函数 用于直接生成一个整数序列 创建range对象的三种方式: (1)range(stop) 创建一个(0,stop)之间的整数序列,步长为1 (2)range(start,stop) 创建一个(start,stop)之间的整数序列,步长为1 (3)range(start,stop ...
分类:其他好文   时间:2021-01-28 12:10:19    阅读次数:0
14864条   上一页 1 ... 13 14 15 16 17 ... 1487 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!