Java学习--day06

  • 方法

            

  • 方法重载

A:参数个数不同

B:参数类型不同

C:参数的顺序不同(算重载,但是在开发中不用)

  • 递归

1.递归头

2.递归体

if(i==1){

return 1;

}else{

}

  • 思维导图

  • 代码

package com.shsxt.day06;
/*
 方法重载(method overload)
 在同一个类中,方法名相同,参数列表不同。与返回值类型无关
 编译错误:只有参数名称不同,不构成方法的重载
 参数列表不同:
 A:参数个数不同
 B:参数类型不同
 C:参数的顺序不同(算重载,但是在开发中不用)*/
public class MethodOverload {
     public static void main(String[] args) {
          System.out.println(add(10, 20));
     }
     public static double add(int n1, int n2) {
          return n1 + n2;
     }
     public static double add(int n1, double n2) {
          return n1 + n2;
     }
     public static double add(double n2, int n1) {
          return n1 + n2;
     }
     public static double add(int n1, int n2, int n3) {
          return n1 + n2 + n3;
     }
}


class method_test1 {
     public static void main(String[] args) {
          favoriteBook("Thinking Of Java");
/*        String title="Thinking Of Java";
          favoriteBook(title);*/
     }
     public static void favoriteBook(String title) {
          System.out.println("One of my favorite books is " + title);
     }
}

/*
 * 递归求10!
 */

class Recursion {
     public static void main(String[] args) {
          System.out.println(jc(10));
     }
     public static long jc(int n) {
          if(n==1){
               return 1;
          }else {
               return n*(jc(n-1));
          }
          
     }
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值