什么是方法

  • 例如我们常使用的System.out.printIn()

  • Java方法是语句的集合,它们在一起执行一个功能

    • 方法是解决一类问题的步骤的有序组合

    • 方法包含于类或对象中

    • 方法在程序中被创建,在其他地方被引用

  • 设计方法的规则:

    方法的本意是功能块,就是实现某个功能的语句块的集合,我们设计方法的时候,最好保持方法的原子性,就是一个方法只能完成一个功能,这样有利于我们后期的拓展。

  • 回顾:方法命名规则?

    驼峰原则

 1 //加法原则
 2 package com.Xujie.Day08;
 3 
 4 public class Java08_01 {
 5     public static void main(String[] args) {
 6       int sum= add(1,2);
 7         System.out.println(sum);
 8     }
 9     public static int add(int a,int b){
10         return a+b;
11     }
12 }

 

 

 1 package com.Xujie.Day08;
 2 
 3 public class Java08_02 {
 4     public static void main(String[] args) {
 5         test();
 6     }
 7     public static void test(){
 8         for (int i = 1; i <= 1000; i++) {
 9             if(i%5==0){
10                 System.out.print(i+"\t");
11         }
12             if(i%(5*3)==0){
13                 System.out.println("\n");
14             }
15     }
16 }
17 }