摘要: `//仿照StringBuilder,我们也可以设计支持链式操作的类。例如,一个可以不断增加的计数器 public class Demo12{ public static void main(String[] args) { Adder adder = new Adder(); adder.add( 阅读全文
posted @ 2020-12-22 21:55 dog_IT 阅读(74) 评论(0) 推荐(0) 编辑
摘要: ` public class Demo12{ public static void main(String[] args) { //StringBuilder是可变字符串,可以预分配缓冲区,这样,往StringBuilder中新增字符时,不会创建新的临时对象:可以高效拼接字符串 StringBuil 阅读全文
posted @ 2020-12-22 20:57 dog_IT 阅读(54) 评论(0) 推荐(0) 编辑
摘要: `// 计算平均分 import java.util.Arrays; public class Demo12{ public static void main(String[] args) { // 用二维数组表示的学生成绩: int[][] scores = { { 82, 90, 91 }, { 阅读全文
posted @ 2020-12-22 17:06 dog_IT 阅读(634) 评论(0) 推荐(0) 编辑
摘要: `// 降序排序 import java.util.Arrays; public class Demo12{ public static void main(String[] args) { int[] ns = { 28, 12, 89, 73, 65, 18, 96, 50, 8, 36 }; 阅读全文
posted @ 2020-12-22 11:28 dog_IT 阅读(108) 评论(0) 推荐(0) 编辑
摘要: `import java.util.*; public class Demo13{ public static void main(String[] arg){ System.out.print("请输入学生数量:"); Scanner sc = new Scanner(System.in); in 阅读全文
posted @ 2020-12-22 11:15 dog_IT 阅读(216) 评论(0) 推荐(0) 编辑
摘要: `import java.util.*; public class Demo13{ public static void main(String[] arg){ int[] scores = {95,56,84,76,92}; int arrMax = 0; //遍历数组元素,将每个元素和arrMa 阅读全文
posted @ 2020-12-22 10:31 dog_IT 阅读(143) 评论(0) 推荐(0) 编辑