码迷,mamicode.com
首页 > 其他好文 > 详细

void方法

时间:2016-02-12 15:08:42      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:

public class TestVoidMethod {

   public static void main(String[] args) {
      printGrade(78.5);
   }

   public static void printGrade(double score) {
      if (score >= 90.0) {
         System.out.println(‘A‘);
      }
      else if (score >= 80.0) {
         System.out.println(‘B‘);
      }
      else if (score >= 70.0) {
         System.out.println(‘C‘);
      }
      else if (score >= 60.0) {
         System.out.println(‘D‘);
      }
      else {
         System.out.println(‘F‘);
      }
   }
}

这里printGrade方法是一个void类型方法,它不返回值。

一个void方法的调用一定是一个语句。 所以,它被在main方法第三行以语句形式调用。就像任何以分号结束的语句一样。

void方法

标签:

原文地址:http://www.cnblogs.com/sansansan/p/5187039.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!