Java 03

1.

public class Demo01 {
   public static void main(String[] args) {
       int sum=add(1,2);
      System.out.println(sum);

---------------------------------------------------------

 

public static int add(int a ,int b){
     return a+b;
}

形式参数 用来定义作用的 如上:a b

实际参数

void  是空方法 不需要返回值

 

上一篇:null和undefined


下一篇:03_HTML常用标签