首页 > 其他分享 >System

System

时间:2024-11-11 22:32:21浏览次数:1  
标签:int void System arr2 数组 public

System 类常见的成员方法:


图1

System 是一个工具类, 提供了一些与系统相关的方法.

public static void exit(int status)  // 终止当前运行的 Java 虚拟机

status 是一个状态码, 有两种情况, 第一种情况是等于 0, 表示当前虚拟机是正常停止的. 第二种情况是非零, 一般是写 1, 表示当前虚拟机是异常停止.

不管是正常停止还是异常停止, 程序执行到这一步之后, 程序都会停止, 也就是说写在这一句话后面的语句都不会被执行.

在计算机中, 时间是有原点的, 表示最初的开始时间, 是 1970 年 1 月 1 号 00:00:00

1970 年 1 月 1 号是 C 语言的生日.

中国位于东八区, 跟标准时间有 8 个小时的时差. 所以在我们的操作系统中获取到的时间原点是 1970 年 1 月 1 号 08:00:00

时间的单位:
1 秒 = 1000 毫秒
1 毫秒 = 1000 微秒
1 微秒 = 1000 纳秒

还有其他不常用的单位: 皮秒, 飞秒, 阿托秒, 仄秒, 幺秒, 都是以 1000 为换算单位的.

public static long currentTimeMillis()  // 返回从时间原点开始, 到代码运行时, 一共度过了多少毫秒

程序示例:

public class demo1 {
    public static void main(String[] args) {
        long l = System.currentTimeMillis();
        System.out.println(l);
    }
}

程序示例:

public class demo2 {
    public static void main(String[] args) {
        double sum = 0.0;
        double avg = 0.0;
        for (int i = 1; i <= 5; i++) {
            // 获取程序开始运行时的时间
            long n1 = System.currentTimeMillis();
            int count = 0;
            for (int j = 2; j <= 200000; j++) {
                if (isPrime2(j)) {
                    ++count;
                }
            }
            // 获取程序运行结束时的时间
            long n2 = System.currentTimeMillis();
            // 获取程序运行总时间
            double res = n2 - n1;
            System.out.println(res);
            // // 打印 count
            // System.out.println(count);
            sum += res;
        }
        avg = sum / 5;
        System.out.println(avg);  // isPrime1: 2344.8, isPrime2: 9.6
    }

    // 判断一个整数是否为素数, 方法一
    public static boolean isPrime1(int num) {
        for (int i = 2; i < num; i++) {
            if (num % i == 0) {
                return false;
            }
        }
        return true;
    }

    // 判断一个整数是否为素数, 方法二 (改进的方法, 效率更高)
    public static boolean isPrime2(int num) {
        for (int i = 2; i * i <= num; i++) {
            if (num % i == 0) {
                return false;
            }
        }
        return true;
    }
}
public static void arraycopy( 数据源数组, 起始索引, 目的地数组, 起始索引, 拷贝个数) 数组拷贝

程序示例:

public class demo3 {
    public static void main(String[] args) {
        // 拷贝数组
        int[] arr1 = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10};
        int[] arr2 = new int[10];
        // 把arr1数组中的数据拷贝到arr2中
        // 参数一:数据源, 要拷贝的数据从哪个数组而来
        // 参数二:从数据源数组中的第几个索引开始拷贝
        // 参数三:目的地, 我要把数据拷贝到哪个数组中
        // 参数四:目的地数组的索引. 
        // 参数五:拷贝的个数
        System.arraycopy(arr1, 0, arr2, 0, 10);
        // 验证
        for (int i = 0; i < arr2.length; i++) {
            System.out.print(arr2[i] + " ");
        }

        System.out.println();
        System.out.println("----------------------------------");

        int[] arr3 = new int[10];
        System.arraycopy(arr1, 0, arr3, 0, 5);
        for (int i = 0; i < arr3.length; i++) {
            System.out.print(arr3[i] + " ");
        }

        System.out.println();
        System.out.println("----------------------------------");

        int[] arr4 = new int[10];
        System.arraycopy(arr1, 0, arr4, 4, 3);
        for (int i = 0; i < arr4.length; i++) {
            System.out.print(arr4[i] + " ");
        }
    }
}

程序示例:

public class demo4 {
    public static void main(String[] args) {
        // public static void arraycopy(数据源数组, 起始索引, 目的地数组, 起始索引, 拷贝个数) 数组拷贝
        // 细节:
        // 如果数据源数组和目的地数组都是基本数据类型, 那么两者的类型必须保持一致, 否则会报错
        int[] arr1 = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10};
        double[] arr2 = new double[10];
        System.arraycopy(arr1, 0, arr2, 0, 10);  // ArrayStoreException: arraycopy: type mismatch: can not copy int[] into double[]
        // 验证
        for (int i = 0; i < arr2.length; i++) {
            System.out.print(arr2[i] + " ");
        }
    }
}

程序示例:

public class demo4 {
    public static void main(String[] args) {
        // public static void arraycopy(数据源数组, 起始索引, 目的地数组, 起始索引, 拷贝个数) 数组拷贝
        // 细节:
        // 在拷贝的时候需要考虑数组的长度, 如果超出范围也会报错
        int[] arr1 = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10};
        int[] arr2 = new int[5];
        System.arraycopy(arr1, 0, arr2, 0, 10); // ArrayIndexOutOfBoundsException: arraycopy: last destination index 10 out of bounds for int[5]
        // 验证
        for (int i = 0; i < arr2.length; i++) {
            System.out.print(arr2[i] + " ");
        }
    }
}

程序示例:

public class demo4 {
    public static void main(String[] args) {
        // public static void arraycopy(数据源数组, 起始索引, 目的地数组, 起始索引, 拷贝个数) 数组拷贝
        // 细节:
        // 如果数据源数组和目的地数组都是引用数据类型, 那么子类类型可以复制给父类类型
        Student s1 = new Student("zhangsan", 23);
        Student s2 = new Student("lisi", 24);
        Student s3 = new Student("wangwu", 25);

        Student[] arr1 = {s1, s2, s3};  // 子类
        Person[] arr2 = new Person[3];  // 父类
        // 把 arr1 中对象的地址值复制给 arr2 中
        System.arraycopy(arr1, 0, arr2, 0, 3);

        // 遍历数组arr2
        for (int i = 0; i < arr2.length; i++) {
            Student stu = (Student) arr2[i];  // 强制类型转换
            System.out.println(stu.getName() + "," + stu.getAge());
        }
    }
}

class Person {
    private String name;
    private int age;

    public Person() {
    }

    public Person(String name, int age) {
        this.name = name;
        this.age = age;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public int getAge() {
        return age;
    }

    public void setAge(int age) {
        this.age = age;
    }
}

class Student extends Person {

    public Student() {
    }

    public Student(String name, int age) {
        super(name, age);
    }
}

标签:int,void,System,arr2,数组,public
From: https://www.cnblogs.com/Chengkai730/p/18540713

相关文章

  • System.Text.Json官方文档(链接)
    下面的微软官方文档中介绍了,如何使用System.Text.Json来序列化和反序列化JSON:JSONserializationanddeserialization其中这里讲解了如何避免循环引用序列化:HowtopreservereferencesandhandleorignorecircularreferencesinSystem.Text.Json其中下面的章节还介绍了......
  • rstrui.exe 是 Windows 系统中的系统还原程序,全名为 "System Restore User Interface"
    rstrui.exe是Windows系统中的系统还原程序,全名为"SystemRestoreUserInterface"。它是Windows操作系统的一部分,允许用户通过图形界面启动系统还原功能,以恢复计算机到先前的状态。以下是关于rstrui.exe的详细解释:1. 功能系统还原:rstrui.exe 负责启动系统还原向导,帮......
  • 第四届智能系统、通信与计算机网络国际学术会议(ISCCN 2025) 2025 4th International C
    @目录一、会议详情二、重要信息三、大会介绍四、出席嘉宾五、征稿主题一、会议详情二、重要信息大会官网:https://ais.cn/u/vEbMBz三、大会介绍第四届智能系统、通信与计算机网络国际学术会议(ISCCN2025)将于2025年2月21-23日在中国南宁隆重召开。会议旨在将“智能系统”“......
  • 【学习笔记1】人类的神经系统 The nervous system of human
    人类的神经系统Thenervoussystemofhuman 人体神经系统(Thehumannervoussystem):人体组成:呼吸系统、骨骼系统、肌肉系统、消化系统、心血管系统、神经系统。【1】Compositionofthehumanbody:respiratorysystem,skeletalsystem,muscularsystem,digestivesys......
  • CSC1003 OJ system running Java SDK.
    CSC1003Assignment2ImportantNotes:Theassignmentisanindividualproject,tobefinishedonone’sowneffort.Theworkmustbesubmittedbefore6pmNov.8,2024(Friday),BeijingTime.Thisisafirmdeadline.Nolatesubmissionsareaccepted.Plag......
  • C:\Windows\System32\spp\store 文件夹是 Windows 操作系统中与激活和许可证管理
    C:\Windows\System32\spp\store文件夹是Windows操作系统中与激活和许可证管理相关的一个重要文件夹。该文件夹存储了与Windows激活过程相关的信息、许可证密钥、许可证的状态等数据。具体来说,它主要涉及SoftwareProtectionPlatform(SPP),即软件保护平台。1. 什么是SPP......
  • 初学Java基础---Day21---正则表达式,日期类,Math类,Random类,System类,Runtime类,大数值运
    一,正则表达式理解:        符合某个语句规范的字符串案例://案例:把一个字符串中带电话号码替换成130****1111的形式Stringstr="小红13012341111小绿15112342222小黑13912343333";//分析:电话号码可以分为三组如:(130)(1234)(1111)其中第一组中的1是固定/......
  • 在 Windows Server 2025 中,WSL2(Windows Subsystem for Linux 2)遇到无法使用镜像网络(mi
    在WindowsServer2025中,WSL2(WindowsSubsystemforLinux2)遇到无法使用镜像网络(mirrored)的问题,同时在使用virtioproxy模式时,子系统的IP与主机IP相同,可能是因为WSL2的网络配置与虚拟机的配置之间存在一些不匹配或不一致的设置。这里有几个可能的原因和解决方法:1. WSL......
  • Win11系统提示找不到System.Web.Mobile.dll文件的解决办法
    其实很多用户玩单机游戏或者安装软件的时候就出现过这种问题,如果是新手第一时间会认为是软件或游戏出错了,其实并不是这样,其主要原因就是你电脑系统的该dll文件丢失了或没有安装一些系统软件平台所需要的动态链接库,这时你可以下载这个System.Web.Mobile.dll文件(挑选合适的版本......
  • Win11系统提示找不到System.Web.Services.dll文件的解决办法
    其实很多用户玩单机游戏或者安装软件的时候就出现过这种问题,如果是新手第一时间会认为是软件或游戏出错了,其实并不是这样,其主要原因就是你电脑系统的该dll文件丢失了或没有安装一些系统软件平台所需要的动态链接库,这时你可以下载这个System.Web.Services.dll文件(挑选合适的版......