摘要: 模拟QQ登陆 public class QQLogin { public static void main(String[] args) { int id1 = 123456; String pwd1 = "zhangsan123"; Scanner scanner = new Scanner(System.in 阅读全文
posted @ 2021-12-14 10:19 锅巴编程 阅读(897) 评论(0) 推荐(0) 编辑
摘要: package com.guoba.method; public class Demo06 { public static void main(String[] args) { System.out.println(f(5));//括号输入几就是计算几的阶乘 } //计算阶乘 //5! 5*4*3* 阅读全文
posted @ 2021-12-14 09:32 锅巴编程 阅读(55) 评论(0) 推荐(0) 编辑
摘要: package com.guoba.method; public class Demo05 { public static void printMax(double ... numbers) { if (numbers.length == 0){ System.out.println("NO arg 阅读全文
posted @ 2021-12-14 09:30 锅巴编程 阅读(45) 评论(0) 推荐(0) 编辑
摘要: 子类Dog根据自己的需要,重写了Animal方法 package com.guoba.method; class Animal{ public void move(){ System.out.println("动物可以移动"); } } class Dog extends Animal{ publi 阅读全文
posted @ 2021-12-14 09:19 锅巴编程 阅读(88) 评论(0) 推荐(0) 编辑
摘要: package com.guoba.method; public class Demo02_OverLoading { public static void main(String[] args) { int sum = add(12,23,56); System.out.println("sum: 阅读全文
posted @ 2021-12-14 09:07 锅巴编程 阅读(46) 评论(0) 推荐(0) 编辑
摘要: 加法,输出三角形,方法调用 package com.guoba.method; public class Demo01 { //main方法 public static void main(String[] args) { int sum = add(1, 2); System.out.printl 阅读全文
posted @ 2021-12-14 09:01 锅巴编程 阅读(38) 评论(0) 推荐(0) 编辑
摘要: package com.guoba.leidemo; public class NeiBuLei { public void out(){ class jubu{//局部内部类 } System.out.println("外部类方法"); } class Inner{//内部类可以获取外部类的私有属 阅读全文
posted @ 2021-12-14 08:50 锅巴编程 阅读(175) 评论(0) 推荐(0) 编辑
摘要: 接口练习案例:防盗门 ##接口练习案例:防盗门 防盗接口 package com.guoba.jiekoudemo; public interface fangdao extends gongneng{ void fangdao(); } 功能接口 package com.guoba.jiekoudemo; //包含防盗 阅读全文
posted @ 2021-12-14 08:48 锅巴编程 阅读(64) 评论(0) 推荐(0) 编辑
摘要: 简单增删改 简单增删改 User类 package com.guoba.interfacetest; import com.sun.org.apache.xpath.internal.operations.String; import java.util.Scanner; public class User i 阅读全文
posted @ 2021-12-14 08:42 锅巴编程 阅读(28) 评论(0) 推荐(0) 编辑
摘要: package com.guoba.exception; /* 自定义异常类 */ public class LiXuanException extends Exception{ private int detail; public LiXuanException(int e){ this.deta 阅读全文
posted @ 2021-12-13 20:29 锅巴编程 阅读(32) 评论(0) 推荐(0) 编辑