上一页 1 ··· 6 7 8 9 10 11 12 13 14 下一页
摘要: ` public class YanghuiTest2 { public static void main(String[] args) { //动态初始化一个10行的二维数组 int[][] yh = new int[10][]; for (int i = 0; i < yh.length; i+ 阅读全文
posted @ 2020-12-24 15:50 dog_IT 阅读(81) 评论(0) 推荐(0) 编辑
摘要: ` public class YanghuiTest { public static void main(String[] args) { int[][] yh = new int[10][]; for(int i=0;i<yh.length;i++){ yh[i] = new int[i+1]; 阅读全文
posted @ 2020-12-24 00:30 dog_IT 阅读(87) 评论(0) 推荐(0) 编辑
摘要: `import java.util.StringJoiner; public class Demo13{ public static void main(String[] args) { String[] names = {"Bob", "Alice", "Grace"}; //数组元素间用分隔符" 阅读全文
posted @ 2020-12-23 19:06 dog_IT 阅读(78) 评论(0) 推荐(0) 编辑
摘要: `import java.util.StringJoiner; public class Demo12{ public static void main(String[] args) { String[] names = {"Bob", "Alice", "Grace"}; //数组元素间用分隔符" 阅读全文
posted @ 2020-12-23 16:55 dog_IT 阅读(54) 评论(0) 推荐(0) 编辑
摘要: `public class Demo13 { public static void main(String[] args) { String[] fields = { "name", "position", "salary" }; String table = "employee"; String 阅读全文
posted @ 2020-12-23 14:31 dog_IT 阅读(81) 评论(0) 推荐(0) 编辑
摘要: `public class Demo12 { public static void main(String[] args) { String[] fields = { "name", "position", "salary" }; String table = "employee"; String 阅读全文
posted @ 2020-12-23 14:26 dog_IT 阅读(105) 评论(0) 推荐(0) 编辑
摘要: `import java.util.*; public class Demo11{ public static void main(String[] args){ String s1 = "hello"; String s2 = "hELLO".toLowerCase(); String s3 = 阅读全文
posted @ 2020-12-23 13:50 dog_IT 阅读(95) 评论(0) 推荐(0) 编辑
摘要: `//仿照StringBuilder,我们也可以设计支持链式操作的类。例如,一个可以不断增加的计数器 public class Demo12{ public static void main(String[] args) { Adder adder = new Adder(); adder.add( 阅读全文
posted @ 2020-12-22 21:55 dog_IT 阅读(73) 评论(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 阅读(632) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 下一页