死循环3种写法

Posted Karl-hut

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了死循环3种写法相关的知识,希望对你有一定的参考价值。

package com.karl;

public class sixunhuanDemo 
    public static void main(String[] args) 
        //死循环3种写法
        /*1.for
        for (;;)
            System.out.println("ko");
        
        */

        //经典写法
       /* 2.while
       while (true)
            System.out.println("koko");
        
        */



        /*3.do-while
        do 
            System.out.println("kokoko");
        while (true);
        */

    

 

go语言的if,swich,for的三种写法

一      Go语言的For循环有3种形式,只有其中的一种使用分号。

package  main

inport(

  "fmt"

)

fnnc  main(){

  for i:=0;i<5;i++{

    fmt.println("%d,i")

}

}

死循环

func main() {

for {

    fmt.println("死循环")

}

}

 

加一个循环

func   main(){

  i:=5

  for i>0{

    i=i-1

    fmt.println("%d,i")

  }

}

Go的switch非常灵活。表达式不必是常量或整数。

func main(a int) {

    //数字
    switch a {
    case 1:
        fmt.Println("1")
case 2: fmt.Println("2") case 3: fmt.Println("3") } }
if语句
if x > 0 {
    return y
} else {
    return x
}
if 布尔表达式 1 {
   /* 在布尔表达式 1 为 true 时执行 */
   if 布尔表达式 2 {
      /* 在布尔表达式 2 为 true 时执行 */
   }
}
 if 语句中嵌套 else if...else 语句
package main

import "fmt"

func main() {
   /* 定义局部变量 */
   var a int = 100
   var b int = 200
 
   /* 判断条件 */
   if a == 100 {
       /* if 条件语句为 true 执行 */
       if b == 200 {
          /* if 条件语句为 true 执行 */
          fmt.Printf("a 的值为 100 , b 的值为 200\n" );
       }
   }
   fmt.Printf("a 值为 : %d\n", a );
   fmt.Printf("b 值为 : %d\n", b );
}

以上是关于死循环3种写法的主要内容,如果未能解决你的问题,请参考以下文章

Oracle循环的几种写法(GOTO 、FOR 、 WHILE 、LOOP)

Mysql输出连续日期的3种写法

C语言中死循环怎么解决?

三种另外的循环 while{} 和do{}while{}还有switch case

JavaScript day03 循环

Java for循环几种写法整理