其他分享
首页 > 其他分享> > 回顾方法及加深

回顾方法及加深

作者:互联网

回顾方法及加深

 1  package oop.Demo01;
 2  ​
 3  import java.io.IOException;
 4  ​
 5  //Demo01 类
 6  public class Demo01 {
 7  ​
 8      //main 方法
 9      public static void main(String[] args) {
10  ​
11      }
12  ​
13      /*
14      修饰符  返回值类型  方法名(…){
15          //方法体
16          return 返回值;
17      }
18       */
19      public String sayHello(){
20          return "hello,world";
21      }
22  ​
23      public void hello(){
24          return;//返回空
25      }
26  ​
27      public int max(int a,int b){
28          return a>b ? a : b;//三元运算符
29      }
30      
31      
32      //数组下标越界  Arrayindexoutofbounds
33      public void readFile(String file) throws IOException{
34          
35      }
36  ​
37  }

 


 ​

标签:10,回顾,int,void,Demo01,加深,static,方法,public
来源: https://www.cnblogs.com/carlos4study/p/15018486.html