final:最终的 1.可以用来修饰:类、方法、变量 2.具体的: 2.1 final 用来修饰一个类:此类不能被其他类所继承。 * 比如:String类、System类、StringBuffer类 2.2 final 用来修饰方法:表明此方法不可以被重写 * 比如:Object类中getClass ...
分类:
其他好文 时间:
2020-07-19 23:35:05
阅读次数:
67
基本类型包装类,,,System类,,,Math类,,,Arrays类,,,大数据运算
基本数据类型对象包装类:java将基本数据类型值封装成了对象。 8种基本类型对应的包装类: 基本数据类型对象包装类特点:用于在基本数据和字符串之间进行转换。 l 将字符串转成基本类型: System.out.println(Integer.parseInt("123") + 2); //打印结果为 ...
分类:
其他好文 时间:
2020-07-13 21:51:21
阅读次数:
69
学习内容 1.读输入 Scanner in = new Scanner(System.in); System.out.println(in.nextLine()); 2.读入一行文字 System.out.println(in.nextLine()); in这个对象做读入下一行的动作,让System ...
分类:
编程语言 时间:
2020-07-07 19:51:55
阅读次数:
55
System类 示例代码: public class Demo3 { public static void main(String[] args) { //arrayCopy 数组复制 int[] src = {12, 34, 45, 56, 67, 45}; int[] dest = new in ...
分类:
其他好文 时间:
2020-07-06 20:00:11
阅读次数:
61
1.类加载器 1.1类加载 1.2类加载器 public static void main(String[] args) { // static ClassLoader getSystemClassLoader() 返回用于委派的系统类加载器。 // ClassLoader getParent() ...
分类:
其他好文 时间:
2020-06-29 00:28:30
阅读次数:
55
1. 标准的输入输出流:System.in:标准的输入流,默认从键盘输入System.out:标准的输出流,默认从控制台输出 修改默认的输入和输出行为:System类的setIn(InputStream is) / setOut(PrintStream ps)方式重新指定输入和输出的流。 2. 打印 ...
分类:
编程语言 时间:
2020-06-26 22:05:40
阅读次数:
65
1.数组的拷贝 System类里包含一个static void arraycopy(object src,int scrops,object dest,int destpos,int length)方法,该方法可以将src数组里的元素值赋值给dest数组的元素。 其中srcops指定从src数组的第 ...
分类:
编程语言 时间:
2020-06-25 16:02:42
阅读次数:
53
final:最终的1.可以用来修饰:类、方法、变量 2.具体的: 2.1 final 用来修饰一个类:此类不能被其他类所继承。 * 比如:String类、System类、StringBuffer类 * 2.2 final 用来修饰方法:表明此方法不可以被重写 * 比如:Object类中getClas ...
分类:
编程语言 时间:
2020-06-21 19:44:51
阅读次数:
45
1.获取系统当前时间:System类中的currentTimeMillis() long time = System.currentTimeMillis(); //返回当前时间与1970年1月1日0时0分0秒之间以毫秒为单位的时间差。 //称为时间戳 System.out.println(time) ...
Object类、Date类、DateFormat类、Calendar类、System类、StringBuilder类、包装类 ...
分类:
编程语言 时间:
2020-06-06 00:55:59
阅读次数:
57