上一页 1 ··· 29 30 31 32 33 34 35 36 37 ··· 133 下一页
摘要: ![](https://img2023.cnblogs.com/blog/1202393/202305/1202393-20230525113339532-864642955.png) 阅读全文
posted @ 2023-05-25 11:33 盘思动 阅读(9) 评论(0) 推荐(0)
摘要: ``` public static void main(String args[]){ int[] source = {1,2,3,4,5,6,7}; int[] target = new int[5]; System.arraycopy(source,0,target,0,5);// 6,7超出5 阅读全文
posted @ 2023-05-25 11:32 盘思动 阅读(32) 评论(0) 推荐(0)
摘要: ![](https://img2023.cnblogs.com/blog/1202393/202305/1202393-20230525112115020-246459675.png) 阅读全文
posted @ 2023-05-25 11:21 盘思动 阅读(10) 评论(0) 推荐(0)
摘要: ``` import java.util.ArrayList; import java.util.Vector; import java.util.Arrays; public class ImoocStudent { public static void main(String args[]){ 阅读全文
posted @ 2023-05-25 11:11 盘思动 阅读(73) 评论(0) 推荐(0)
摘要: ``` import java.util.ArrayList; import java.util.Vector; public class ImoocStudent { public static void main(String args[]){ long startTime = System.c 阅读全文
posted @ 2023-05-25 10:12 盘思动 阅读(29) 评论(0) 推荐(0)
摘要: ``` import java.util.StringTokenizer; public class ImoocStudent { public static void main(String args[]){ for(int i = 1;i < 9 ; i++){ for(int j = 1;j 阅读全文
posted @ 2023-05-25 09:47 盘思动 阅读(37) 评论(0) 推荐(0)
摘要: Java 中我们可以使用 StringTokennizer 设置不同分隔符来分隔字符串,默认的分隔符是:空格、制表符(\t)、换行符(\n)、回车符(\r)。 以下实例演示了 StringTokennizer 使用空格和等号来分隔字符串: ``` import java.util.StringTok 阅读全文
posted @ 2023-05-24 22:25 盘思动 阅读(78) 评论(0) 推荐(0)
摘要: ![](https://img2023.cnblogs.com/blog/1202393/202305/1202393-20230524175729644-1901103358.png) 阅读全文
posted @ 2023-05-24 17:58 盘思动 阅读(14) 评论(0) 推荐(0)
摘要: ``` public class WrapperClassDemo1 { public static void main(String[] args){ printMax(3,3,32,34.2); printMax(new double[]{1,2,3}); } public static voi 阅读全文
posted @ 2023-05-23 15:51 盘思动 阅读(115) 评论(0) 推荐(0)
摘要: ``` import java.text.*; import java.util.*; public class WrapperClassDemo1 { public static void main(String[] args){ Date dNow = new Date(); SimpleDat 阅读全文
posted @ 2023-05-23 11:00 盘思动 阅读(88) 评论(0) 推荐(0)
上一页 1 ··· 29 30 31 32 33 34 35 36 37 ··· 133 下一页