共计 31300 个字符,预计需要花费 79 分钟才能阅读完成。
文章和代码曾经归档至【Github 仓库:https://github.com/timerring/java-tutorial】或者公众号【AIShareLab】回复 java 也可获取。
包装类
包装类的分类
1) 针对八种根本数据类型相应的援用类型—包装类
2) 有了类的特点,就能够调用类中的办法。
包装类和根本数据的转换
演示包装类和根本数据类型的互相转换, 这里以 int 和 Integer 演示。
1) jdk5 前的手动装箱和拆箱形式,装箱:根本类型 -> 包装类型 。反之拆箱。
2) jdk5 当前(含 jdk5) 的主动装箱和拆箱形式。
3) 主动装箱底层调用的是 valueOf 办法,比方 Integer.valueOf04)其它包装类的用法相似, 不一一举例
package com.hspedu.wrapper;
public class Integer01 {public static void main(String[] args) {
// 演示 int <--> Integer 的装箱和拆箱
//jdk5 前是手动装箱和拆箱
// 手动装箱 int->Integer
int n1 = 100;
Integer integer = new Integer(n1);
Integer integer1 = Integer.valueOf(n1);
// 手动拆箱
//Integer -> int
int i = integer.intValue();
//jdk5 后,就能够主动装箱和主动拆箱
int n2 = 200;
// 主动装箱 int->Integer
Integer integer2 = n2; // 底层应用的是 Integer.valueOf(n2)
// 主动拆箱 Integer->int
int n3 = integer2; // 底层依然应用的是 intValue()办法}
}
包装类型和 String 类型的互相转换
package com.hspedu.wrapper;
public class WrapperVSString {public static void main(String[] args) {// 包装类(Integer)->String
Integer i = 100;// 主动装箱
// 形式 1
String str1 = i + "";
// 形式 2
String str2 = i.toString();
// 形式 3
String str3 = String.valueOf(i);
//String -> 包装类(Integer)
String str4 = "12345";
Integer i2 = Integer.parseInt(str4);// 应用到主动装箱
Integer i3 = new Integer(str4);// 结构器
System.out.println("ok~~");
}
}
Integer 类和 Character 类的罕用办法
能够通过图查问到其含有的字段和办法,jump to source 能够查看到源码。
package com.hspedu.wrapper;
public class WrapperMethod {public static void main(String[] args) {System.out.println(Integer.MIN_VALUE); // 返回最小值
System.out.println(Integer.MAX_VALUE);// 返回最大值
System.out.println(Character.isDigit('a'));// 判断是不是数字
System.out.println(Character.isLetter('a'));// 判断是不是字母
System.out.println(Character.isUpperCase('a'));// 判断是不是大写
System.out.println(Character.isLowerCase('a'));// 判断是不是小写
System.out.println(Character.isWhitespace('a'));// 判断是不是空格
System.out.println(Character.toUpperCase('a'));// 转成大写
System.out.println(Character.toLowerCase('A'));// 转成小写
}
}
Integer 类面试题
看看上面代码,输入什么后果? 为什么?
package com.hspedu.wrapper;
public class WrapperExercise02 {public static void main(String[] args) {Integer i = new Integer(1);
Integer j = new Integer(1);
System.out.println(i == j); //False
// 所以,这里次要是看范畴 -128 ~ 127 就是间接返回
/*
//1. 如果 i 在 IntegerCache.low(-128)~IntegerCache.high(127), 就间接从缓存数组返回
//2. 如果不在 -128~127, 就间接 new Integer(i)
public static Integer valueOf(int i) {if (i >= IntegerCache.low && i <= IntegerCache.high)
return IntegerCache.cache[i + (-IntegerCache.low)];
return new Integer(i);
}
*/
Integer m = 1; // 底层 Integer.valueOf(1); -> 浏览源码
Integer n = 1;// 底层 Integer.valueOf(1);
System.out.println(m == n); //T
// 所以,这里次要是看范畴 -128 ~ 127 就是间接返回
//,否则,就 new Integer(xx);
Integer x = 128;// 底层 Integer.valueOf(1);
Integer y = 128;// 底层 Integer.valueOf(1);
System.out.println(x == y);//False
Integer i11=127;
int i12=127;
// 只有有根本数据类型,判断的是
// 值是否雷同
System.out.println(i11==i12); //T
Integer i13=128;
int i14=128;
System.out.println(i13==i14);//T
}
}
String 类
String 类的了解和创建对象
- String 对象用于保留字符串, 也就是一组字符序列
- 字符串常量对象是用双引号括起的字符序列。例如:” 你好 ”、”12.97″、”boy” 等
- 字符串的字符应用 Unicode 字符编码,一个字符 (不辨别字母还是汉字) 占两个字节
-
String 类较罕用结构器(其它看手册);
String s1 =new String();
String s2 = new String(String original);
String s3 = new String(char[] a);
String s4 = new String(char[] a, int startIndex, int count)
实现 Serializable,阐明能够串行化,即能够在网络上传输。
实现接口 Comparable [String 对象能够比拟大小]
package com.hspedu.string_;
import java.io.Serializable;
public class String01 {public static void main(String[] args) {
// 1.String 对象用于保留字符串,也就是一组字符序列
// 2. "jack" 字符串常量, 双引号括起的字符序列
// 3. 字符串的字符应用 Unicode 字符编码,一个字符 (不辨别字母还是汉字) 占两个字节
// 4. String 类有很多结构器,结构器的重载
// 罕用的有 String s1 = new String(); //
// String s2 = new String(String original);
// String s3 = new String(char[] a);
// String s4 = new String(char[] a,int startIndex,int count)
// String s5 = new String(byte[] b)
// 5. String 类实现了接口 Serializable【String 能够串行化: 能够在网络传输】// 接口 Comparable [String 对象能够比拟大小]
// 6. String 是 final 类,不能被其余的类继承
// 7. String 有属性 private final char value[]; 用于寄存字符串内容, 阐明其本质还是 char 数组。// 8. 肯定要留神:value 是一个 final 类型,不能够批改(地址不能批改):即 value 不能指向新的地址,然而单个字符内容是能够变动
String name = "jack";
name = "tom";
final char[] value = {'a','b','c'};
char[] v2 = {'t','o','m'};
value[0] = 'H';
//value = v2; 不能够批改 value 地址
System.out.println(name); //Tom
}
}
创立 String 对象的两种形式
1) 形式一: 间接赋值 String s = “hspedu”;
2) 形式二: 调用结构器 String s = new String(“hspedu”);
两种创立 String 对象的区别
- 形式一: 先从常量池查看是否有 ”hsp”数据空间, 如果有,间接指向; 如果
没有则从新创立, 而后指向。 s 最终指向的是常量池的空间地址。 -
形式二: 先在堆中创立空间,外面保护了 value 属性,指向常量池的 hsp 空间。
如果常量池没有 ”hsp”,从新创立,如果有,间接通过 value 指向。最终指向的是堆中的空间地址。
-
画出两种形式的内存分布图
课堂测试题
package com.hspedu.string_;
public class StringExercise01 {public static void main(String[] args) {
String a = "abc";
String b ="abc";
// equals 在 string 中被重写,一一比拟,雷同
System.out.println(a.equals(b));//T
System.out.println(a==b); //T
// 这里指向的是同一个地址,故 == 也雷同
}
}
package com.hspedu.string_;
public class StringExercise03 {public static void main(String[] args) {
String a = "hsp"; //a 指向 常量池的“hsp”String b =new String("hsp");//b 指向堆中对象
System.out.println(a.equals(b)); //T
System.out.println(a==b); //F
//b.intern() 办法返回常量池地址
System.out.println(a==b.intern()); //T intern 办法查看 API
System.out.println(b==b.intern()); //F
// b 指向的是堆地址,b.intern 返回的是常量池地址
}
}
当调用 intern 办法时,如果池曾经蕴含一个等于此 String 对象的字符串 (用 equals(Object) 办法确定),则返回池中的字符串。否则,将此 String 对象增加到池中,并返回此 String 对象的援用
b.intern 办法 最终返回的是常量池的地址(对象)
字符串的个性
阐明
1) String 是一个 final 类,代表不可变的字符序列
2) 字符串是不可变的。一个字符串对象一旦被调配,其内容是不可变的.
例:以下语句创立了几个对象?
String s1 = "hello";
s1 = "haha"; // 创立了 2 个对象,从指向 hello 变为了指向 haha(而不是批改 hello 为 haha)
面试题
1)题 1
String a ="hello" +"abc";
创立了几个对象? 只有 1 个对象
String a = “hello”+”abc”; ==> 优化等价 String a = “helloabc”;
剖析:编译器不傻,做一个优化,判断创立的常量池对象,是否有援用指向。
2)题 2
String a ="hello";// 创立 a 对象
String b ="abc";// 创立 b 对象
String c = a + b;
创立了几个对象? 画出内存图? 一共有 3 对象, 如图。
底层是 StringBuilder sb = new StringBuilder(); sb.append(a); sb.append(b); sb 是在堆中,并且 append 是在原来字符串的根底上追加的。
重要规定:String c1 = “ab” + “cd”; 常量相加,看的是池。String c1 = a+b; 变量相加, 是在堆中
综合练习
package com.hspedu.string_;
public class StringExercise10 {public static void main(String[] args) {}}
class Test1 {String str = new String("hsp");
final char[] ch = {'j', 'a', 'v', 'a'};
public void change(String str, char ch[]) {
str = "java";
ch[0] = 'h';
}
public static void main(String[] args) {Test1 ex = new Test1();
ex.change(ex.str, ex.ch);
System.out.print(ex.str + "and");
System.out.println(ex.ch);
}
}
数组默认状况下是在堆中的,
每次调办法都会产生对应的新栈,过程如下所示:
String 类的常见办法
阐明
String 类是保留字符串常量的。每次更新都须要从新开拓空间,效率较低, 因而 java 设计者还提供了 StringBuilder
和 StringBuffer
来加强 String 的性能, 并提高效率。
String 类的常见办法一览
- equals // 辨别大小写,判断内容是否相等
- equalsIgnoreCase // 疏忽大小写的判断内容是否相等 length/ 获取字符的个数, 字符串的长度
- length 获取字符的个数,字符串的长度
- indexOf // 获取字符在字符串中第 1 次呈现的索引索引从 0 开始, 如果找不到, 返回 -1
- lastIndexOf // 获取字符在字符串中最初 1 次呈现的索引, 索引从 0 开始, 如找不到, 返回 -1
- substring // 截取指定范畴的子串
- trim // 去前后空格
- charAt // 获取某索引处的字符, 留神不能应用 Str[index]这种形式.
package com.hspedu.string_;
public class StringMethod01 {public static void main(String[] args) {
// 1. equals 后面曾经讲过了. 比拟内容是否雷同,辨别大小写
String str1 = "hello";
String str2 = "Hello";
System.out.println(str1.equals(str2));//
// 2.equalsIgnoreCase 疏忽大小写的判断内容是否相等
String username = "johN";
if ("john".equalsIgnoreCase(username)) {System.out.println("Success!");
} else {System.out.println("Failure!");
}
// 3.length 获取字符的个数,字符串的长度
System.out.println("韩顺平".length());
// 4.indexOf 获取字符在字符串对象中第一次呈现的索引,索引从 0 开始,如果找不到,返回 -1
String s1 = "wer@terwe@g";
int index = s1.indexOf('@');
System.out.println(index);// 3
System.out.println("weIndex=" + s1.indexOf("we"));//0
// 5.lastIndexOf 获取字符在字符串中最初一次呈现的索引,索引从 0 开始,如果找不到,返回 -1
s1 = "wer@terwe@g@";
index = s1.lastIndexOf('@');
System.out.println(index);//11
System.out.println("ter 的地位 =" + s1.lastIndexOf("ter"));//4
// 6.substring 截取指定范畴的子串
String name = "hello, 张三";
// 上面 name.substring(6) 从索引 6 开始截取前面所有的内容
System.out.println(name.substring(6));// 截取前面的字符
// name.substring(0,5)示意从索引 0 开始截取,截取到索引 5 - 1 = 4 地位
System.out.println(name.substring(2,5));//llo
}
}
- toUpperCase
- toLowerCase
- concat
- replace 替换字符串中的字符
-
split 宰割字符串, 对于某些宰割字符,咱们须要本义比方 | \\ 等
案例: String poem=” 锄禾日当午, 汗滴未下土, 谁知盘中餐, 粒粒皆辛苦 ”; 和文件门路.
- compareTo // 比拟两个字符串的大小
- toCharArray // 转换成字符数组
- format // 格局字符串,%s 字符串 %c 字符 %d 整型 %.2f 浮点型案例,将一个人的信息格式化输入.
package com.hspedu.string_;
public class StringMethod02 {public static void main(String[] args) {
// 1.toUpperCase 转换成大写
String s = "heLLo";
System.out.println(s.toUpperCase());//HELLO
// 2.toLowerCase
System.out.println(s.toLowerCase());//hello
// 3.concat 拼接字符串
String s1 = "宝玉";
s1 = s1.concat("林黛玉").concat("薛宝钗").concat("together");
System.out.println(s1);// 宝玉林黛玉薛宝钗 together
// 4.replace 替换字符串中的字符
s1 = "宝玉 and 林黛玉 林黛玉 林黛玉";
// 在 s1 中,将 所有的 林黛玉 替换成薛宝钗
// 老韩解读: s1.replace() 办法执行后,返回的后果才是替换过的.
// 留神对 s1 没有任何影响
String s11 = s1.replace("宝玉", "jack");
System.out.println(s1);// 宝玉 and 林黛玉 林黛玉 林黛玉
System.out.println(s11);//jack and 林黛玉 林黛玉 林黛玉
// 5.split 宰割字符串, 对于某些宰割字符,咱们须要 本义比方 | \\ 等
String poem = "锄禾日当午, 汗滴禾下土, 谁知盘中餐, 粒粒皆辛苦";
// 1. 以 , 为规范对 poem 进行宰割 , 返回一个数组
// 2. 在对字符串进行宰割时,如果有特殊字符,须要退出 本义符 \
String[] split = poem.split(",");
poem = "E:\\aaa\\bbb";
split = poem.split("\\\\");
System.out.println("== 宰割后内容 ===");
for (int i = 0; i < split.length; i++) {System.out.println(split[i]);
}
// 6.toCharArray 转换成字符数组
s = "happy";
char[] chs = s.toCharArray();
for (int i = 0; i < chs.length; i++) {System.out.println(chs[i]);
}
// 7.compareTo 比拟两个字符串的大小,如果前者大,// 则返回负数,后者大,则返回正数,如果相等,返回 0
// (1) 如果长度雷同,并且每个字符也雷同,就返回 0
// (2) 如果长度雷同或者不雷同,然而在进行比拟时,能够辨别大小
// 就返回 if (c1 != c2) {
// return c1 - c2;
// }
// (3) 如果后面的局部都雷同,就返回 str1.len - str2.len
String a = "jcck";// len = 3
String b = "jack";// len = 4
System.out.println(a.compareTo(b)); // 返回值是 'c' - 'a' = 2 的值
// 8.format 格局字符串
/* 占位符有:
* %s 字符串 %c 字符 %d 整型 %.2f 浮点型
*/
String name = "john";
int age = 10;
double score = 56.857;
char gender = '男';
// 将所有的信息都拼接在一个字符串.
String info =
"我的姓名是" + name + "年龄是" + age + ", 问题是" + score + "性别是" + gender + "。心愿大家喜爱我!";
System.out.println(info);
// 1. %s , %d , %.2f %c 称为占位符
// 2. 这些占位符由前面变量来替换
// 3. %s 示意前面由 字符串来替换
// 4. %d 是整数来替换
// 5. %.2f 示意应用小数来替换,替换后,只会保留小数点两位, 并且进行四舍五入的解决
// 6. %c 应用 char 类型来替换
String formatStr = "我的姓名是 %s 年龄是 %d,问题是 %.2f 性别是 %c. 心愿大家喜爱我!";
String info2 = String.format(formatStr, name, age, score, gender);
System.out.println("info2=" + info2);
}
}
StringBuffer 类
根本介绍
java.lang.StringBuffer 代表可变的字符序列,能够对字符串内容进行增删.
很多办法与 String 雷同,但 StringBuffer 是可变长度的。
StringBuffer 是一个容器。
- StringBuffer 的间接父类 是 AbstractStringBuilder
- StringBuffer 实现了 Serializable, 即 StringBuffer 的对象能够串行化
- 在父类中 AbstractStringBuilder 有属性 char[] value, 不是 final,该 value 数组寄存 字符串内容,因而寄存在堆中的。
- StringBuffer 是一个 final 类,不能被继承
- 因为 StringBuffer 字符内容是存在 char[] value, 所有在变动 (减少 / 删除) 不必每次都更换地址(即不是每次创立新对象),所以效率高于 String。
String VS StringBuffer
-
String 保留的是字符串常量。外面的值不能更改,每次 String 类的更新实际上就是更改地址,效率较低
private final char value[];
-
StringBuffer 保留的是字符串变量,外面的值能够更改,每次 StringBuffer 的更新实际上能够更新内容,不必每次更新地址(空间大小不够的时候才会进行扩大),效率较高。
char[] value; 这个放在堆。
结构器
package com.hspedu.stringbuffer_;
public class StringBuffer02 {public static void main(String[] args) {
// 结构器的应用
//1. 创立一个 大小为 16 的 char[] , 用于寄存字符内容
StringBuffer stringBuffer = new StringBuffer();
//2 通过结构器指定 char[] 大小
StringBuffer stringBuffer1 = new StringBuffer(100);
//3. 通过 给一个 String 创立 StringBuffer, char[] 大小就是 str.length() + 16
StringBuffer hello = new StringBuffer("hello");
}
}
String 和 StringBuffer 互相转换
String ——> StringBuffer
- 应用结构器
- 应用的是 append 办法
StringBuffer ——> String
- 应用 StringBuffer 提供的 toString 办法
- 应用结构器来搞定
package com.hspedu.stringbuffer_;
public class StringAndStringBuffer {public static void main(String[] args) {
// String——>StringBuffer
String str = "hello tom";
// 形式 1 应用结构器
// 留神:返回的才是 StringBuffer 对象,对 str 自身没有影响
StringBuffer stringBuffer = new StringBuffer(str);
// 形式 2:应用的是 append 办法
StringBuffer stringBuffer1 = new StringBuffer();
stringBuffer1 = stringBuffer1.append(str);
// StringBuffer ->String
StringBuffer stringBuffer3 = new StringBuffer("timerring");
// 形式 1:应用 StringBuffer 提供的 toString 办法
String s = stringBuffer3.toString();
// 形式 2:应用结构器来搞定
String s1 = new String(stringBuffer3);
}
}
StringBuffer 类常见办法
- append
- delete 删除索引为 >=start && <end 处的字符
- replace
- insert 在索引为 index 的地位插入 , 原来索引为 index 的内容主动后移
- length() 长度
package com.hspedu.stringbuffer_;
public class StringBufferMethod {public static void main(String[] args) {StringBuffer s = new StringBuffer("hello");
// 增
s.append(',');// "hello,"
s.append("张三丰");//"hello, 张三丰"
s.append("赵敏").append(100).append(true).append(10.5);//"hello, 张三丰赵敏 100true10.5"
System.out.println(s);//"hello, 张三丰赵敏 100true10.5"
// 删
/*
* 删除索引为 >=start && <end 处的字符
* 解读: 删除 11~14 的字符 [11, 14)
*/
s.delete(11, 14);
System.out.println(s);//"hello, 张三丰赵敏 true10.5"
// 改
// 应用 周芷若 替换 索引 9 -11 的字符 [9,11)
s.replace(9, 11, "周芷若");
System.out.println(s);//"hello, 张三丰周芷若 true10.5"
// 查找指定的子串在字符串第一次呈现的索引,如果找不到返回 -1
int indexOf = s.indexOf("张三丰");
System.out.println(indexOf);//6
// 插
// 在索引为 9 的地位插入 "赵敏", 原来索引为 9 的内容主动后移
s.insert(9, "赵敏");
System.out.println(s);// "hello, 张三丰赵敏周芷若 true10.5"
// 长度
System.out.println(s.length());//22
System.out.println(s);
}
}
StringBuffer 类测试
package com.hspedu.stringbuffer_;
// 剖析以下代码
public class StringBufferExercise01 {public static void main(String[] args) {
String str = null;// ok
StringBuffer sb = new StringBuffer(); //ok
sb.append(str);// 须要看源码 , 底层调用的是 AbstractStringBuilder 的 appendNull, 转为了一个字符数组。System.out.println(sb.length());// 4
System.out.println(sb);// null 是一个字符数组
// 上面的结构器,会抛出 NullpointerException
StringBuffer sb1 = new StringBuffer(str);// 看底层源码 super(str.length() + 16); 会抛出空指针异样
System.out.println(sb1);
}
}
StringBuffer 类练习
package com.hspedu.stringbuffer_;
import java.util.Scanner;
public class StringBufferExercise02 {public static void main(String[] args) {
/*
输出商品名称和商品价格,要求打印成果示例, 应用后面学习的办法实现:商品名 商品价格
手机 123,564.59 // 比方 价格 3,456,789.88
要求:价格的小数点后面每三位用逗号隔开, 在输入。思路剖析
1. 定义一个 Scanner 对象,接管用户输出的 价格(String)
2. 心愿应用到 StringBuffer 的 insert,须要将 String 转成 StringBuffer
3. 而后应用相干办法进行字符串的解决
*/
//new Scanner(System.in)
String price = "8123564.59";
StringBuffer sb = new StringBuffer(price);
// 先实现一个最简略的实现 123,564.59
// 找到小数点的索引,而后在该地位的前 3 位,插入, 即可
// int i = sb.lastIndexOf(".");
// sb = sb.insert(i - 3, ",");
// 下面的两步须要做一个循环解决, 才是正确的
for (int i = sb.lastIndexOf(".") - 3; i > 0; i -= 3) {sb = sb.insert(i, ",");
}
System.out.println(sb);//8,123,564.59
}
}
StringBuilder 类
根本介绍
1) 一个可变的字符序列。此类提供一个 与 StringBuffer 兼容的 API,但不保障同步 (StringBuilder 不是线程平安)。该类被设计用作 StringBuffer 的一个繁难替换,用在字符串缓冲区被单个线程应用的时候。如果可能,倡议优先采纳该类。因为 在大多数实现中,它比 StringBuffer 要快。
2) 在 StringBuilder 上的次要操作是 append 和 insert 办法,可重载这些办法,
以承受任意类型的数据。
- StringBuilder 继承 AbstractStringBuilder 类
- 实现了 Serializable , 阐明 StringBuilder 对象是能够串行化(对象能够网络传输, 能够保留到文件)
- StringBuilder 是 final 类, 不能被继承
- StringBuilder 对象字符序列依然是寄存在其父类 AbstractStringBuilder 的 char[] value; 因而,字符序列是堆中
- StringBuilder 的办法,没有做互斥的解决,即没有 synchronized 关键字, 因而在单线程的状况下应用 StringBuilder
String、StringBuffer 和 StringBuilder 的比拟
StringBuilder 和 StringBuffer 均代表可变的字符序列,办法是一样的,所以应用和 StringBuffer 一样。
1) StringBuilder 和 StringBuffer 十分相似,均代表可变的字符序列,而且办法也一样
2) String: 不可变字符序列, 效率低, 然而复用率高(地址都指向它)。
3) StringBuffer: 可变字符序列、效率较高(增删)、线程平安, 看源码
4) StringBuilder: 可变字符序列、效率最高、线程不平安
5) String 应用留神阐明:
string s=”a”;// 创立了一个字符串
s +=”b”;// 实际上原来的 ”a” 字符串对象曾经抛弃了,当初又产生了一个字符串 s +”b”(也就是 ”ab”)。如果屡次执行这些扭转串内容的操作,会导致大量正本字符串对象存留在内存中,升高效率。如果这样的操作放到循环中,会极大, 影响程序的性能 =>
论断: 如果咱们对 String 做大量批改, 不要应用 String
String、StringBuffer 和 StringBuilder 的效率测试
StringVsStringBufferVsStringBuilder.java 效率:StringBuilder > StringBuffer > String
package com.hspedu.stringbuilder_;
public class StringVsStringBufferVsStringBuilder {public static void main(String[] args) {
long startTime = 0L;
long endTime = 0L;
StringBuffer buffer = new StringBuffer("");
startTime = System.currentTimeMillis();
for (int i = 0; i < 80000; i++) {//StringBuffer 拼接 20000 次
buffer.append(String.valueOf(i));
}
endTime = System.currentTimeMillis();
System.out.println("StringBuffer 的执行工夫:" + (endTime - startTime)); // 20
StringBuilder builder = new StringBuilder("");
startTime = System.currentTimeMillis();
for (int i = 0; i < 80000; i++) {//StringBuilder 拼接 20000 次
builder.append(String.valueOf(i));
}
endTime = System.currentTimeMillis();
System.out.println("StringBuilder 的执行工夫:" + (endTime - startTime)); // 11
String text = "";
startTime = System.currentTimeMillis();
for (int i = 0; i < 80000; i++) {//String 拼接 20000
text = text + i;
}
endTime = System.currentTimeMillis();
System.out.println("String 的执行工夫:" + (endTime - startTime)); // 5428
}
}
String、StringBuffer 和 StringBuilder 的抉择
应用的准则, 论断:
- 如果字符串存在大量的批改操作,个别应用 StringBuffer 或 StringBuilder
- 如果字符串存在大量的批改操作,并在单线程的状况, 应用 StringBuilder
- 如果字符串存在大量的批改操作,并在多线程的状况,应用 StringBuffer
- 如果咱们字符串很少批改。被多个对象援用,应用 String, 比方配置信息等
Math 类
根本介绍
Math 类蕴含用于执行根本数学运算的办法,如初等指数、对数、平方根和三角函数。
办法一览(均为静态方法)
Math 类常见办法利用案例
package com.hspedu.math_;
public class MathMethod {public static void main(String[] args) {// 看看 Math 罕用的办法(静态方法)
//1.abs 绝对值
int abs = Math.abs(-9);
System.out.println(abs);//9
//2.pow 求幂
double pow = Math.pow(2, 4);// 2 的 4 次方
System.out.println(pow);//16
//3.ceil 向上取整, 返回 >= 该参数的最小整数(转成 double);
double ceil = Math.ceil(3.9);
System.out.println(ceil);//4.0
//4.floor 向下取整,返回 <= 该参数的最大整数(转成 double)
double floor = Math.floor(4.001);
System.out.println(floor);//4.0
//5.round 四舍五入 Math.floor(该参数 +0.5)
long round = Math.round(5.51);
System.out.println(round); //6
//6.sqrt 求开方
double sqrt = Math.sqrt(9.0); // 当然,如果复数开方的话则 NaN
System.out.println(sqrt); //3.0
//7.random 求随机数
// random 返回的是 0 <= x < 1 之间的一个随机小数
// 思考:请写出获取 a- b 之间的一个随机整数,a,b 均为整数,比方 a = 2, b=7,即返回一个数 x 2 <= x <= 7
// Math.random() * (b-a) 返回的就是 0 <= 数 <= b-a
// (1) (int)(a) <= x <= (int)(a + Math.random() * (b-a +1) )
// (2) 应用具体的数给小伙伴介绍 a = 2 b = 7
// (int)(a + Math.random() * (b-a +1)) = (int)(2 + Math.random() * 6)
// 2 + Math.random()*6 返回的就是 2<= x < 8 小数
// (int)(2 + Math.random()*6) = 2 <= x <= 7
// (3) 公式就是 (int)(a + Math.random() * (b-a +1) )
for(int i = 0; i < 100; i++) {System.out.println((int)(2 + Math.random() * (7 - 2 + 1)));
}
//max , min 返回最大值和最小值
int min = Math.min(1, 9);
int max = Math.max(45, 90);
System.out.println("min=" + min);
System.out.println("max=" + max);
}
}
Arrays 类
Arrays 类常见办法利用案例
Arrays 外面蕴含了一系列静态方法,用于治理或操作数组(比方排序和搜寻)。
- toString 返回数组的字符串模式 Arrays.toString(arr)
-
sort 排序(天然排序和定制排序) Integer arr[] = {1,-1,7,0,89}
package com.hspedu.arrays_; import java.util.Arrays; import java.util.Comparator; public class ArraysMethod01 {public static void main(String[] args) {Integer[] integers = {1, 20, 90}; // 遍历数组 // for(int i = 0; i < integers.length; i++) {// System.out.println(integers[i]); // } // 间接应用 Arrays.toString 办法,显示数组 // System.out.println(Arrays.toString(integers));// // 演示 sort 办法的应用 Integer arr[] = {1, -1, 7, 0, 89}; // 进行排序 // 老韩解读 //1. 能够间接应用冒泡排序 , 也能够间接应用 Arrays 提供的 sort 办法排序 //2. 因为数组是援用类型,所以通过 sort 排序后,会间接影响到 实参 arr //3. sort 重载的,也能够通过传入一个接口 Comparator 实现定制排序 //4. 调用 定制排序 时,传入两个参数 (1) 排序的数组 arr // (2) 实现了 Comparator 接口的匿名外部类 , 要求实现 compare 办法 //5. 先演示成果,再解释 //6. 这里体现了接口编程的形式 , 看看源码,就明确 // 源码剖析 //(1) Arrays.sort(arr, new Comparator() //(2) 最终到 TimSort 类的 private static <T> void binarySort(T[] a, int lo, int hi, int start, // Comparator<? super T> c)() //(3) 执行到 binarySort 办法的代码, 会依据动静绑定机制 c.compare()执行咱们传入的 // 匿名外部类的 compare () // while (left < right) {// int mid = (left + right) >>> 1; // if (c.compare(pivot, a[mid]) < 0) // right = mid; // else // left = mid + 1; // } //(4) new Comparator() { // @Override // public int compare(Object o1, Object o2) {// Integer i1 = (Integer) o1; // Integer i2 = (Integer) o2; // return i2 - i1; // } // } //(5) public int compare(Object o1, Object o2) 返回的值 >0 还是 <0 // 会影响整个排序后果, 这就充分体现了 接口编程 + 动静绑定 + 匿名外部类的综合应用 // 未来的底层框架和源码的应用形式,会十分常见 //Arrays.sort(arr); // 默认排序办法 // 定制排序 Arrays.sort(arr, new Comparator() { @Override public int compare(Object o1, Object o2) {Integer i1 = (Integer) o1; Integer i2 = (Integer) o2; return i2 - i1; } }); System.out.println("=== 排序后 ==="); System.out.println(Arrays.toString(arr));// } }
自定义实现排序程序:
package com.hspedu.arrays_; import java.util.Arrays; import java.util.Comparator; public class ArraysSortCustom {public static void main(String[] args) {int[] arr = {1, -1, 8, 0, 20}; //bubble01(arr); bubble02(arr, new Comparator() { @Override public int compare(Object o1, Object o2) {int i1 = (Integer) o1; int i2 = (Integer) o2; return i2 - i1;// return i2 - i1; } }); System.out.println("== 定制排序后的状况 =="); System.out.println(Arrays.toString(arr)); } // 应用冒泡实现排序 public static void bubble01(int[] arr) { int temp = 0; for (int i = 0; i < arr.length - 1; i++) {for (int j = 0; j < arr.length - 1 - i; j++) { // 从小到大 if (arr[j] > arr[j + 1]) {temp = arr[j]; arr[j] = arr[j + 1]; arr[j + 1] = temp; } } } } // 联合冒泡 + 定制 public static void bubble02(int[] arr, Comparator c) { int temp = 0; for (int i = 0; i < arr.length - 1; i++) {for (int j = 0; j < arr.length - 1 - i; j++) {// 数组排序由 c.compare(arr[j], arr[j + 1])返回的值决定 if (c.compare(arr[j], arr[j + 1]) > 0) {temp = arr[j]; arr[j] = arr[j + 1]; arr[j + 1] = temp; } } } } }
- binarySearch 通过二分搜寻法进行查找,要求必须排好序。
4) copyOf 数组元素的复制
4) fill 数组元素的填充
4) equals 比拟两个数组元素内容是否完全一致
- asList 将一组值,转换成 list
package com.hspedu.arrays_;
import java.util.Arrays;
import java.util.List;
public class ArraysMethod02 {public static void main(String[] args) {Integer[] arr = {1, 2, 90, 123, 567};
// binarySearch 通过二分搜寻法进行查找,要求必须排好
// 1. 应用 binarySearch 二叉查找
// 2. 要求该数组是有序的. 如果该数组是无序的,不能应用 binarySearch
// 3. 如果数组中不存在该元素,就返回 return -(low + 1); // key not found.
int index = Arrays.binarySearch(arr, 567);
System.out.println("index=" + index);
// copyOf 数组元素的复制
// 1. 从 arr 数组中,拷贝 arr.length 个元素到 newArr 数组中
// 2. 如果拷贝的长度 > arr.length 就在新数组的前面 减少 null
// 3. 如果拷贝长度 < 0 就抛出异样 NegativeArraySizeException
// 4. 该办法的底层应用的是 System.arraycopy()
Integer[] newArr = Arrays.copyOf(arr, arr.length);
System.out.println("== 拷贝执行结束后 ==");
System.out.println(Arrays.toString(newArr));
// fill 数组元素的填充
Integer[] num = new Integer[]{9,3,2};
// 1. 应用 99 去填充 num 数组,能够了解成是全副替换原理的元素
Arrays.fill(num, 99);
System.out.println("==num 数组填充后 ==");
System.out.println(Arrays.toString(num));
// equals 比拟两个数组元素内容是否完全一致
Integer[] arr2 = {1, 2, 90, 123};
// 1. 如果 arr 和 arr2 数组的元素一样,则办法 true;
// 2. 如果不是齐全一样,就返回 false
boolean equals = Arrays.equals(arr, arr2);
System.out.println("equals=" + equals);
// asList 将一组值,转换成 list
// 1. asList 办法,会将 (2,3,4,5,6,1)数据转成一个 List 汇合
// 2. 返回的 asList 编译类型 List(接口)
// 3. asList 运行类型 java.util.Arrays#ArrayList, 是 Arrays 类的
// 动态外部类 private static class ArrayList<E> extends AbstractList<E>
// implements RandomAccess, java.io.Serializable
List asList = Arrays.asList(2,3,4,5,6,1);
System.out.println("asList=" + asList);
System.out.println("asList 的运行类型" + asList.getClass());
}
}
System 类
System 类常见办法和案例
1) exit 退出以后程序,0 示意一个状态 , 失常的状态。
2) arraycopy : 复制数组元素,比拟适宜底层调用,个别应用 Arrays.copyOf 实现复制数组。
3) currentTimeMillens: 返回以后工夫间隔 1970-1- 1 的毫秒数。
4) gc: 运行垃圾回收机制 System.gc();。
package com.hspedu.system_;
import java.util.Arrays;
public class System_ {public static void main(String[] args) {// System.out.println("ok1");
// //1. exit(0) 示意程序退出
// //2. 0 示意一个状态 , 失常的状态
// System.exit(0);//
// System.out.println("ok2");
//arraycopy:复制数组元素,比拟适宜底层调用,// 个别应用 Arrays.copyOf 实现复制数组
int[] src={1,2,3};
int[] dest = new int[3];// dest 以后是 {0,0,0}
//1. 次要是搞清楚这五个参数的含意
//2.
// 源数组
// * @param src the source array.
// srcPos:从源数组的哪个索引地位开始拷贝
// * @param srcPos starting position in the source array.
// dest : 指标数组,即把源数组的数据拷贝到哪个数组
// * @param dest the destination array.
// destPos: 把源数组的数据拷贝到 指标数组的哪个索引
// * @param destPos starting position in the destination data.
// length: 从源数组拷贝多少个数据到指标数组
// * @param length the number of array elements to be copied.
System.arraycopy(src, 0, dest, 0, src.length);
// int[] src={1,2,3};
System.out.println("dest=" + Arrays.toString(dest));//[1, 2, 3]
//currentTimeMillens: 返回以后工夫间隔 1970-1-1 的毫秒数
System.out.println(System.currentTimeMillis());
}
}
BigInteger 和 BigDecimal 类
介绍
利用场景:
1) Biglnteger 适宜保留比拟大的整型
2) BigDecimal 适宜保留精度更高的浮点型(小数)
BigInteger 和 BigDecimal 常见办法
在对 BigInteger
进行加减乘除的时候,须要应用对应的办法,不能间接进行 + – * /
1) add 加
2) subtract 减
3) multiply 乘
4) divide 除
package com.hspedu.bignum;
import java.math.BigInteger;
public class BigInteger_ {public static void main(String[] args) {
// 当咱们编程中,须要解决很大的整数,long 不够用
// 能够应用 BigInteger 的类来搞定
// long l = 23788888899999999999999999999l;
// System.out.println("l=" + l);
BigInteger bigInteger = new BigInteger("23788888899999999999999999999");
BigInteger bigInteger2 = new BigInteger("10099999999999999999999999999999999999999999999999999999999999999999999999999999999");
System.out.println(bigInteger);
//1. 在对 BigInteger 进行加减乘除的时候,须要应用对应的办法,不能间接进行 + - * /
//2. 能够创立一个 要操作的 BigInteger 对象 而后进行相应操作
BigInteger add = bigInteger.add(bigInteger2);
System.out.println(add);//
BigInteger subtract = bigInteger.subtract(bigInteger2);
System.out.println(subtract);// 减
BigInteger multiply = bigInteger.multiply(bigInteger2);
System.out.println(multiply);// 乘
BigInteger divide = bigInteger.divide(bigInteger2);
System.out.println(divide);// 除
}
}
package com.hspedu.bignum;
import java.math.BigDecimal;
public class BigDecimal_ {public static void main(String[] args) {
// 当咱们须要保留一个精度很高的数时,double 不够用
// 能够是 BigDecimal
// double d = 1999.11111111111999999999999977788d;
// System.out.println(d);
BigDecimal bigDecimal = new BigDecimal("1999.11");
BigDecimal bigDecimal2 = new BigDecimal("3");
System.out.println(bigDecimal);
// 1. 如果对 BigDecimal 进行运算,比方加减乘除,须要应用对应的办法
// 2. 创立一个须要操作的 BigDecimal 而后调用相应的办法即可
System.out.println(bigDecimal.add(bigDecimal2));
System.out.println(bigDecimal.subtract(bigDecimal2));
System.out.println(bigDecimal.multiply(bigDecimal2));
// System.out.println(bigDecimal.divide(bigDecimal2));// 可能抛出异样 ArithmeticException 因为除不尽
// 在调用 divide 办法时,指定精度即可. 加上 BigDecimal.ROUND_CEILING
// 如果有有限循环小数,就会保留 分子 的精度
System.out.println(bigDecimal.divide(bigDecimal2, BigDecimal.ROUND_CEILING));
}
}
日期类
第一代日期类
1) Date: 准确到毫秒, 代表特定的霎时
2) SimpleDateFormat: 格局和解析日期的类:它容许进行格式化(日期 -> 文本)、解析(文本 -> 日期) 和规范化。
package com.hspedu.date_;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
public class Date01 {public static void main(String[] args) throws ParseException {
//1. 获取以后零碎工夫
//2. 这里的 Date 类是在 java.util 包
//3. 默认输入的日期格局是国外的形式, 因而通常须要对格局进行转换
Date d1 = new Date(); // 获取以后零碎工夫
System.out.println("以后日期 =" + d1); // 以后日期 =Mon Apr 24 13:40:14 CST 2023
Date d2 = new Date(9234567); // 通过指定毫秒数失去工夫
System.out.println("d2=" + d2); // 获取某个工夫对应的毫秒数 d2=Thu Jan 01 10:33:54 CST 1970
//1. 创立 SimpleDateFormat 对象,能够指定相应的格局
//2. 这里的格局应用的字母是规定好,不能乱写
SimpleDateFormat sdf = new SimpleDateFormat("yyyy 年 MM 月 dd 日 hh:mm:ss E");
String format = sdf.format(d1); // format: 将日期转换成指定格局的字符串
System.out.println("以后日期 =" + format); // 以后日期 =2023 年 04 月 24 日 01:40:14 星期一
//1. 能够把一个格式化的 String 转成对应的 Date
//2. 失去 Date 依然在输入时,还是依照国外的模式,如果心愿指定格局输入,须要转换
//3. 在把 String -> Date,应用的 sdf 格局须要和你给的 String 的格局一样,否则会抛出转换异样
String s = "1996 年 01 月 01 日 10:20:30 星期一";
Date parse = sdf.parse(s);
System.out.println("parse=" + sdf.format(parse)); // parse=1996 年 01 月 01 日 10:20:30 星期一
}
}
第二代日期类
1) 第二代日期类,次要就是 Calendar 类(日历)。
public abstract class Calendar extends Object implements Serialzable,Cloneable, Comparable<Calendar>
2) Calendar 类是一个抽象类,它为特定霎时与一组诸如 YEAR、MONTH、DAY_OF_MONTH、HOUR 等日历定股之间的转换提供了一些办法,并为操作日历字段(例如取得下星期的日期)提供了一些办法。
package com.hspedu.date_;
import java.util.Calendar;
public class Calendar_ {public static void main(String[] args) {
// 1. Calendar 是一个抽象类,并且结构器是 private
// 2. 能够通过 getInstance() 来获取实例
// 3. 提供大量的办法和字段提供给程序员
// 4. Calendar 没有提供对应的格式化的类,因而须要程序员本人组合来输入(灵便)
// 5. 如果咱们须要依照 24 小时进制来获取工夫,Calendar.HOUR == 改成 => Calendar.HOUR_OF_DAY
Calendar c = Calendar.getInstance(); // 创立日历类对象 // 比较简单,自在
System.out.println("c=" + c);
// 2. 获取日历对象的某个日历字段
System.out.println("年:" + c.get(Calendar.YEAR));
// 这里为什么要 + 1, 因为 Calendar 返回月时候,是依照 0 开始编号
System.out.println("月:" + (c.get(Calendar.MONTH) + 1));
System.out.println("日:" + c.get(Calendar.DAY_OF_MONTH));
System.out.println("小时:" + c.get(Calendar.HOUR));
System.out.println("分钟:" + c.get(Calendar.MINUTE));
System.out.println("秒:" + c.get(Calendar.SECOND));
// Calender 没有专门的格式化办法,所以须要程序员本人来组合显示
System.out.println(c.get(Calendar.YEAR) + "-" + (c.get(Calendar.MONTH) + 1) + "-" + c.get(Calendar.DAY_OF_MONTH) +
"" + c.get(Calendar.HOUR_OF_DAY) +":"+ c.get(Calendar.MINUTE) +":" + c.get(Calendar.SECOND) );
}
}
第三代日期类
后面两代日期类的有余剖析
JDK 1.0 中蕴含了一个 java.util.Date 类,然而它的大多数办法曾经在 JDK 1.1 引入 Calendar 类之后被弃用了。而 Calendar 也存在问题是:
1) 可变性: 像日期和工夫这样的类应该是不可变的。
2) 偏移性:Date 中的年份是从 1900 开始的,而月份都从 0 开始。
3) 格式化: 格式化只对 Date 有用,Calendar 则不行。
4) 此外,它们也不是线程平安的; 不能解决闰秒等(每隔 2 天,多出 1s).
LocalDate(日期 / 年月日)、LocalTime(工夫 / 时分秒)、LocalDateTime(日期工夫 / 年月日时分秒) JDK8 退出:
- LocalDate 只蕴含日期,能够获取日期字段
- LocalTime 只蕴含工夫,能够获取工夫字段
-
LocalDateTime 蕴含目期 + 工夫,能够获取日期和工夫字段
LocalDateTime ldt = LocalDateTime.now(); //LocalDate.now();//LocalTime.now() System.out.println(ldt); ldt.getYear(); ldt.getMonthValue(); ldt.getMonth(); ldt.getDayofMonth(); ldt.getHour(); ldt.getMinute(); ldt.getSecond();
package com.hspedu.date_;
import java.time.Instant;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.LocalTime;
import java.time.format.DateTimeFormatter;
import java.util.ArrayList;
import java.util.Collection;
public class LocalDate_ {public static void main(String[] args) {
// 第三代日期
//1. 应用 now() 返回示意以后日期工夫的 对象
LocalDateTime ldt = LocalDateTime.now(); //LocalDate.now();//LocalTime.now()
System.out.println(ldt);
//2. 应用 DateTimeFormatter 对象来进行格式化
// 创立 DateTimeFormatter 对象
DateTimeFormatter dateTimeFormatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
String format = dateTimeFormatter.format(ldt);
System.out.println("格式化的日期 =" + format);
System.out.println("年 =" + ldt.getYear());
System.out.println("月 =" + ldt.getMonth());
System.out.println("月 =" + ldt.getMonthValue());
System.out.println("日 =" + ldt.getDayOfMonth());
System.out.println("时 =" + ldt.getHour());
System.out.println("分 =" + ldt.getMinute());
System.out.println("秒 =" + ldt.getSecond());
LocalDate now = LocalDate.now(); // 能够获取年月日
LocalTime now2 = LocalTime.now();// 获取到时分秒
// 提供 plus 和 minus 办法能够对以后工夫进行加或者减
// 看看 890 天后,是什么时候 把 年月日 - 时分秒
LocalDateTime localDateTime = ldt.plusDays(890);
System.out.println("890 天后 =" + dateTimeFormatter.format(localDateTime));
// 看看在 3456 分钟前是什么时候,把 年月日 - 时分秒输入
LocalDateTime localDateTime2 = ldt.minusMinutes(3456);
System.out.println("3456 分钟前 日期 =" + dateTimeFormatter.format(localDateTime2));
}
}
DateTimeFormatter 格局日期类
相似于 SimpleDateFormat
DateTimeFormat dtf = DateTimeFormatter.ofPattern(格局);
String str = dtf.format(日期对象);
案例演示:
LocalDateTime ldt = LocalDateTime.now();
// 对于 DateTimeFormatter 的各个格局参数,须要看 jdk8 的文档.
DateTimeFormatter dtf = DateTimeFormatter.ofPattern("yyyy 年 MM 月 dd 日 HH 小时 tmm 分钟 ss 秒");
String strDate = dtf.format(ldt);
Instant 工夫戳
package com.hspedu.date_;
import java.time.Instant;
import java.util.Date;
public class Instant_ {public static void main(String[] args) {//1. 通过 静态方法 now() 获取示意以后工夫戳的对象
Instant now = Instant.now();
System.out.println(now);
//2. 通过 from 能够把 Instant 转成 Date
Date date = Date.from(now);
//3. 通过 date 的 toInstant() 能够把 date 转成 Instant 对象
Instant instant = date.toInstant();}
}
第三代日期类更多办法
LocalDateTime
类MonthDay
类: 查看反复事件- 是否是平年
- 减少日期的某个局部
- 应用
plus
办法测试减少工夫的某个局部 - 应用
minus
办法测试查看一年前和一年后的日期 - 应用的时候查看
API
即可
本章作业
1. 编程题
- 将字符串中指定局部进行反转。比方将 ”abcdef” 反转为 ”aedcbf”。
2) 编写办法 public static String reverse(String str, int start , int end)搞定。
package com.hspedu.homework;
public class Homework01 {public static void main(String[] args) {
// 测试
String str = "abcdef";
System.out.println("=== 替换前 ===");
System.out.println(str);
try {str = reverse(str, 1, 4);
} catch (Exception e) {System.out.println(e.getMessage());
return;
}
System.out.println("=== 替换后 ===");
System.out.println(str);
}
/**
* (1) 将字符串中指定局部进行反转。比方将 "abcdef" 反转为 "aedcbf"
* (2) 编写办法 public static String reverse(String str, int start , int end) 搞定
* 思路剖析
* (1) 先把办法定义确定
* (2) 把 String 转成 char[],因为 char[] 的元素是能够替换的
* (3) 画出剖析示意图
* (4) 代码实现
*/
public static String reverse(String str, int start, int end) {
// 对输出的参数做一个验证
// 重要的编程技巧分享!!!
//(1) 写出正确的状况
//(2) 而后取反即可
//(3) 这样写,你的思路就不乱
if(!(str != null && start >= 0 && end > start && end < str.length())) {throw new RuntimeException("参数不正确");
}
char[] chars = str.toCharArray();
char temp = ' '; // 替换辅助变量
for (int i = start, j = end; i < j; i++, j--) {temp = chars[i];
chars[i] = chars[j];
chars[j] = temp;
}
// 应用 chars 从新构建一个 String 返回即可
return new String(chars);
}
}
2. 编程题
输出用户名、明码、邮箱,如果信息录入正确,则提醒注册胜利,否则生成异样对象
要求:
(1) 用户名长度为 2 或 3 或 4
(2) 明码的长度为 6, 要求全是数字 isDigital
(3) 邮箱中蕴含 @和。并且 @在的后面
package com.hspedu.homework;
public class Homework02 {public static void main(String[] args) {
String name = "abc";
String pwd = "123456";
String email = "ti@i@sohu.com";
try {userRegister(name,pwd,email);
System.out.println("祝贺你,注册胜利~");
} catch (Exception e) {System.out.println(e.getMessage());
}
}
/**
* 输出用户名、明码、邮箱,如果信息录入正确,则提醒注册胜利,否则生成异样对象
* 要求:* (1) 用户名长度为 2 或 3 或 4
* (2) 明码的长度为 6,要求全是数字 isDigital
* (3) 邮箱中蕴含 @和. 并且 @在. 的后面
* <p>
* 思路剖析
* (1) 先编写办法 userRegister(String name, String pwd, String email) {}
* (2) 针对 输出的内容进行校核,如果发现有问题,就抛出异样,给出提醒
* (3) 独自的写一个办法,判断 明码是否全副是数字字符 boolean
*/
public static void userRegister(String name, String pwd, String email) {
// 再退出一些校验
if(!(name != null && pwd != null && email != null)) {throw new RuntimeException("参数不能为 null");
}
// 过关
// 第一关
int userLength = name.length();
if (!(userLength >= 2 && userLength <= 4)) {throw new RuntimeException("用户名长度为 2 或 3 或 4");
}
// 第二关
if (!(pwd.length() == 6 && isDigital(pwd))) {throw new RuntimeException("明码的长度为 6,要求全是数字");
}
// 第三关
int i = email.indexOf('@');
int j = email.indexOf('.');
if (!(i > 0 && j > i)) {throw new RuntimeException("邮箱中蕴含 @和. 并且 @在. 的后面");
}
}
// 独自的写一个办法,判断 明码是否全副是数字字符 boolean
public static boolean isDigital(String str) {char[] chars = str.toCharArray();
for (int i = 0; i < chars.length; i++) {if (chars[i] < '0' || chars[i] > '9') {return false;}
}
return true;
}
}
3. 编程题
(1) 编写 java 程序,输出模式为: Han shun Ping 的人名,以 Ping,Han .S 的模式打印
进去。其中.S 是两头单词的首字母。
(2) 例如输出“Willian Jefferson Clinton”,输入模式为:Clinton, Willian .J
package com.hspedu.homework;
public class Homework03 {public static void main(String[] args) {
String name = "Willian Jefferson Clinton";
printName(name);
}
/**
* 编写办法: 实现输入格局要求的字符串
* 编写 java 程序,输出模式为:Han shun Ping 的人名,以 Ping,Han .S 的模式打印
* 进去。其中.S 是两头单词的首字母
* 思路剖析
* (1) 对输出的字符串进行 宰割 split(" ")
* (2) 对失去的 String[] 进行格式化 String.format()* (3) 对输出的字符串进行校验即可
*/
public static void printName(String str) {if(str == null) {System.out.println("str 不能为空");
return;
}
String[] names = str.split(" ");
if(names.length != 3) {System.out.println("输出的字符串格局不对");
return;
}
String format = String.format("%s,%s .%c", names[2], names[0], names[1].toUpperCase().charAt(0));
System.out.println(format);
}
}
4. 编程题
输出字符串,判断外面有多少个大写字母,多少个小写字母,多少个数字。
package com.hspedu.homework;
public class Homework04 {public static void main(String[] args) {
String str = "abcHsp U 1234";
countStr(str);
}
/**
* 输出字符串,判断外面有多少个大写字母,多少个小写字母,多少个数字
* 思路剖析
* (1) 遍历字符串,如果 char 在 '0'~'9' 就是一个数字
* (2) 如果 char 在 'a'~'z' 就是一个小写字母
* (3) 如果 char 在 'A'~'Z' 就是一个大写字母
* (4) 应用三个变量来记录 统计后果
*/
public static void countStr(String str) {if (str == null) {System.out.println("输出不能为 null");
return;
}
int strLen = str.length();
int numCount = 0;
int lowerCount = 0;
int upperCount = 0;
int otherCount = 0;
for (int i = 0; i < strLen; i++) {if(str.charAt(i) >= '0' && str.charAt(i) <= '9') {numCount++;} else if(str.charAt(i) >= 'a' && str.charAt(i) <= 'z') {lowerCount++;} else if(str.charAt(i) >= 'A' && str.charAt(i) <= 'Z') {upperCount++;} else {otherCount++;}
}
System.out.println("数字有" + numCount);
System.out.println("小写字母有" + lowerCount);
System.out.println("大写字母有" + upperCount);
System.out.println("其余字符有" + otherCount);
}
}
5. 分析题