码迷,mamicode.com
首页 >  
搜索关键字:while loop    ( 31405个结果
[2021 spring] CS61A Lab 6: Nonlocal, Mutability, Iterators and Generators
[2021 spring] CS61A Lab 6: Nonlocal, Mutability, Iterators and Generators ...
分类:编程语言   时间:2021-07-02 16:21:32    阅读次数:0
快排-排序
public class QuickSort<T extends Comparable<T>> extends Sort<T> { @Override protected void sort() { sort(0, array.length); } /** * 对 [begin, end) 范围的元 ...
分类:编程语言   时间:2021-07-01 17:03:00    阅读次数:0
归并排序
public class MergeSort<T extends Comparable<T>> extends Sort<T> { private T[] leftArray; @Override protected void sort() { leftArray = (T[]) new Compa ...
分类:编程语言   时间:2021-07-01 16:59:30    阅读次数:0
JavaScript循环语句
循环语句(重复做某件事) 1.for 循环代码块一定的次数 循环语句语法 for(初始值; 范围; 循环方式){ 执行代码块也叫循环体 } 代码块:多行代码执行的地方。 2.while 当指定条件为true时,循环指定的代码块 var a=初始值; while(范围){ 循环体; 循环方式; } w ...
分类:编程语言   时间:2021-07-01 16:37:19    阅读次数:0
winform 使用Thread.Sleep界面卡死 使用 Application.DoEvents 方法防止UI假死
#region 毫秒延时 界面不会卡死 public static void Delay(int mm) { DateTime current = DateTime.Now; while (current.AddMilliseconds(mm) > DateTime.Now) { Applicati ...
分类:移动开发   时间:2021-07-01 16:29:40    阅读次数:0
windows 静态绑定arp
1.先查看用的哪块网卡上的网,记录下Idx编号,我的是14 C:\Windows\system32>netsh i i show in Idx Met MTU 状态 名称 1 75 4294967295 connected Loopback Pseudo-Interface 1 10 1 65535 ...
分类:Windows程序   时间:2021-06-30 18:43:22    阅读次数:0
interactive-slam-Example3
Example3 koide3 edited this page on 18 Mar 2020 · 17 revisions In this example, we correct a largely bent map with loop closing, edge refinement, and ...
分类:其他好文   时间:2021-06-30 18:35:10    阅读次数:0
检测证书过期并发送钉钉告警
#!/usr/bin/env bash __Author__="liy" # 发送钉钉告警 function DingDing(){ curl 'https://oapi.dingtalk.com/robot/send?access_token=xxxxxxxxxxxxxxxxxxxxxxxxxxx ...
分类:其他好文   时间:2021-06-30 18:14:38    阅读次数:0
java中的多线程Thread十九个实例带你轻松学会
@(Thread) 1.什么是进程?什么是线程? 进程是一个应用程序/软件 线程是一个进程中的执行单元/执行场景 一个进程可以启动多个线程 线程之间内存独立不共享 进程之间堆内存和方法区内存共享,栈内存独立 2.对于单核的CPU来说,实际上不存在多线程并发,而是多个线程切换的很快,让人有种并发的错觉 ...
分类:编程语言   时间:2021-06-30 17:39:41    阅读次数:0
单片机十天征服你--第二讲
单片机十天征服你-第二讲-流水灯设计、蜂鸣器发声、继电器设计 ## 各大品牌官网申请免费样片 流水灯设计 //二极管闪烁 #include<reg52.h> sbit p1_1=P1^0; unsigned int a; void main() { while(1) { a=50000; p1_1= ...
分类:其他好文   时间:2021-06-28 21:00:26    阅读次数:0
31405条   上一页 1 2 3 4 ... 3141 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!