首页 > 编程语言 > 详细

不用static,巧用对象.方法调用java中的函数

时间:2016-10-16 12:04:53      阅读:304      评论:0      收藏:0      [点我收藏+]

 

先生成一个对象,用“对象.方法()”的方式调用。
java中的main方法是静态的,用于程序的入口,在静态方法中无法调用非静态方法,只能调用静态方法。想调用静态方法的话就要先生成该类的一个对象,通过对象调用非静态方法。
如:
public class SquareIntTest {

 public static void main(String[] args) {
  int result;
  SquareIntTest m = new SquareIntTest();
  for (int x = 1; x <= 10; x++) {
   result = (int)m.Square(x);
   // Math库中也提供了求平方数的方法
   // result=(int)Math.pow(x,2);
   System.out.println("The square of " + x + " is " + result + "\n");
  }
 }

 // 自定义求平方数的静态方法
  public int Square(int a)
  {
   return a*a;
  }
}

 

不用static,巧用对象.方法调用java中的函数

原文:http://www.cnblogs.com/shouhutian/p/5966162.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!