摘要:
package com.正则表达式; import java.util.Scanner; /** * * 校验qq号码 * 1:要求必须是5-15位数字 * 2: 0不能开头 * 分析: * A:键盘录入qq号码 * B:写一个功能 * C:调用功能,输出结果 * */ public class R 阅读全文
摘要:
package test.面试题; public class Test9 { public static void main(String[] args){ Outer.Inner in=new Outer().new Inner(); in.show(); } } //补齐程序(注意:内部类和外部类没有继承关系)输出30 20 10 class... 阅读全文
摘要:
package test.面试题; public class Test7 { public static void main(String[] args){ /** 1 1 1 1 2 1 1 3 3 1 1 4 6 4 ... 阅读全文
摘要:
package test.面试题; public class Test1 { public static void main(String[] args){ byte b1=3,b2=4,b; /* b=b1+b2; 因为在进行运算之前会进行类型的提升,将两个byte都转化成为int进行运算,所以得到的值是int型... 阅读全文
摘要:
package com.Integer; public class Study01 { /** * 对象包装类的引入 * 基本数据类型没有什么方法,操作它的话比较麻烦,所以一般使用它的包装类进行操作 * int Integer * byte Byte * short Short * long Long ... 阅读全文
摘要:
package com.Arrays; import java.util.Arrays; import java.util.List; public class Study01 { /** * java.util 需要导入包 主要用来操作数组,排序和搜索 * * 没有构造方法,所有方法都是static修饰 方法: asList(T... a) 返回受数... 阅读全文
摘要:
package com.String; import java.util.Scanner; public class StringTest { public static void main(String[] args){ StringTest st=new StringTest(); st.pjS 阅读全文
摘要:
package com.Math; public class Study01 { public static void main(String[] args){ Study01 s=new Study01(); s.textAbs(-0.8); s.textCeil(0.4); s.textFloor(0.9); ... 阅读全文
摘要:
package com.Object; public class Test01{ public static void main(String[] args){ Test01 ts=new Test01(); ts.textEquals(); Student s=new Student(); }... 阅读全文
摘要:
package com.Scanner; import java.util.Scanner; public class Study01 { public static void main(String[] args){ Scanner input=new Scanner(System.in); //System.out.println(input.ha... 阅读全文