Java调用Static修饰的本类方法

 1 public class Dy {
 2     public static void main(String[] args){
 3         
 4         int a=6;
 5         int b=5;
 6         int result=0;
 7         result=Add(a,b);               //调用本类方法Add()
 8         System.out.println(result);
 9     }
10     
11 private static int Add(int x,int y){  //定义方法Add(),求两数之和
12     return x+y;
13 }

 

posted @ 2016-11-25 10:22  小雨滴答  阅读(521)  评论(0编辑  收藏  举报