摘要: 递归 递归:方法自己调用自己,每次调用时传入不同的变量 public class var{ public static void main(String[] args){ T t1 =new T(); t1.test(4); }}class T{ public void test(int n){ i 阅读全文
posted @ 2022-11-03 13:42 书包里的跳蚤 阅读(47) 评论(0) 推荐(0)