其他分享
首页 > 其他分享> > 方法

方法

作者:互联网

方法

1.何谓方法

Java方法是语句的集合,把语句放在一起实现一个功能。

设计方法的原则:一个方法只完成1个功能,这样利于我们后期的扩展。

package com.gcbeen.method;

/**
 * @author gcbeen
 * 
 */
public class Demo01 {

    // main方法
    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;
    }

}

2.方法的定义及调用

方法的定义

定义一个方法包含以下语法:

修饰符 返回值类型 方法名(参数类型 参数名) {
    ...
    方法体
    ...
    return 返回值;
}

方法包含一个方法头和一个方法体。下面是一个方法的所有部分:

调用方法:对象名.方法名(实参列表)

Java支持两种调用方法的方式,根据方法是否返回值来选择,当方法返回一个值的时候,方法调用通常被当做一个值。例如:

int larger = max(30, 40);

如果方法返回值是void,方法调用一定是一条语句。

System.out.println("Hello, world!");

案例

package com.gcbeen.method;

/**
 * @author gcbeen
 * 
 */
public class Demo02 {

    public static void main(String[] args) {
        int max = max(10, 20);
        System.out.println(max);
    }

    // 比大小
    public static int max(int num1,int num2) {
        int result = 0;
        if (num1 == num2) {
            System.out.println("num1==num2");
            return 0;   // 终止方法
        }
        if (num1 > num2) {
            result = num1;
        } else {
            result = num2;
        }
        return result;
    }

}

3.方法重载

package com.gcbeen.method;

/**
 * @author gcbeen
 * 
 */
public class Demo03 {

    public static void main(String[] args) {
        int max = max(10, 20);
        System.out.println(max);

        double max2 = max(10.0, 20.0);
        System.out.println(max2);
    }

    // 比大小
    public static int max(int num1, int num2) {
        int result = 0;
        if (num1 == num2) {
            System.out.println("num1==num2");
            return 0;   // 终止方法
        }
        if (num1 > num2) {
            result = num1;
        } else {
            result = num2;
        }
        return result;
    }

    // 比大小
    public static double max(double num1, double num2) {
        double result = 0;
        if (num1 == num2) {
            System.out.println("num1==num2");
            return 0;   // 终止方法
        }
        if (num1 > num2) {
            result = num1;
        } else {
            result = num2;
        }
        return result;
    }

}
package com.gcbeen.method;

/**
 * @author gcbeen
 * 
 */
public class Demo04 {

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

        int sum2 = add(1, 2, 3);
        System.out.println(sum2);
    }

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

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

4.命令行传参

package com.gcbeen.method;

/**
 * @author gcbeen
 * 
 */
public class Demo05 {

    public static void main(String[] args) {
        // args.length 数组长度
        for (int i = 0; i < args.length; i++) {
            System.out.println("args[" + i + "]:" + args[i]);
        }
    }

}
gcbjohndeMacBook-Pro:method gcbeen$ javac Demo03.java 
gcbjohndeMacBook-Pro:method gcbeen$ cd ../
gcbjohndeMacBook-Pro:gcbeen gcbeen$ cd ../
gcbjohndeMacBook-Pro:com gcbeen$ cd ../
gcbjohndeMacBook-Pro:src gcbeen$ java com.gcbeen.method.Demo03 this is gcbeen
args[0]:this
args[1]:is
args[2]:gcbeen

5.可变参数 本质是数组

package com.gcbeen.method;

/**
 * @author gcbeen
 * 
 */
public class Demo06 {

    public static void main(String[] args) {
        Demo04 demo04 = new Demo04();
        demo04.test(1, 2, 3, 4, 5);
    }

    public void test(int... i) {
        System.out.println(i[0]);
        System.out.println(i[1]);
        System.out.println(i[2]);
        System.out.println(i[3]);
        System.out.println(i[4]);
    }
}
package com.gcbeen.method;

/**
 * @author gcbeen
 * 
 */
public class Demo07 {

    public static void main(String[] args) {
        // 调用可变参数的方法
        printMax(34, 3, 3, 2, 56.5);
        printMax(new double[]{1, 2, 3});

    }

    public static void printMax(double... numbers) {
        if (numbers.length == 0) {
            System.out.println("没有数据!");
            return;
        }

        double result = numbers[0];

        // 排序
        for (int i = 1; i < numbers.length; i++) {
            if (numbers[i] > result) {
                result = numbers[i];
            }
        }
        System.out.println("The max Value is " + result);
    }
}

6.递归

package com.gcbeen.method;

import java.util.Scanner;

/**
 * @author gcbeen
 * 
 */
public class Demo08 {

    // 5! 5*4*3*2*1 == 5 * (4!)
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        System.out.println("请输入一个数:");
        int number = scanner.nextInt();

        int test = test(number);

        System.out.println(number + "的阶乘:" + test);
    }

    public static int test(int n) {
        if (n == 1) {
            return 1;
        } else {
            return n * test(n - 1);
        }
    }
}

标签:int,System,gcbeen,println,方法,public
来源: https://www.cnblogs.com/gcbeen/p/16683710.html