四种方法调用

package com.atxiaoyao.method;

public class Test01 {
    public static void main(String[] args) {
//        无参无返回值
        method01();
//        有参无返回值
        method02(10,20);
//        无参有返回值
        int m3 = method03();
        System.out.println("调用的是无参有返回值方法: m3 = " + m3);
//        有参无返回值
        int result = method04(5,15);
        System.out.println("调用的是有参有返回值方法: result =" + result);
    }

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

    public static int method03(){
        int a = 100;
        int b = 200;
        int result;
        result = a + b;
        return result;
    }

    public static void method02(int a,int b){
        int result = a + b;
        System.out.println("调用的是有参无返回值方法: result = " + result);
    }

    public static void method01(){
        int a = 1;
        int b = 2;
        int c;
        c = a + b;
        System.out.println("调用的是无参无返回值方法: c =" + c);
    }
}

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值