Java语法-System类的常用方法

本文介绍Java中System类的使用方法,包括获取当前时间戳及数组复制。通过具体代码示例展示了如何利用System.currentTimeMillis()计算代码段执行时间,并使用System.arraycopy进行数组元素的复制。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

System 类在 lang 包下,因此,不用导包;
主要有两个方法 ——
System.currentTimeMills( )
System.arraycopy(src, srcPos, dest, destPos, length)

public class test2 {
    public static void main(String[] args) {

        int t = 0;
        long a1 = System.currentTimeMillis();
        for (int i = 0; i < 1000; i++) {
            System.out.println(i);
        }
        long a2 = System.currentTimeMillis();
        System.out.println("共花了" + (a2 - a1) + "毫秒");

        int[] src = {1,2,3,4,5};
        int[] dest = {6,7,8,9,10};
        System.arraycopy(src,0,dest,0,3);
        for (int i = 0; i < dest.length; i++) {
            System.out.println(dest[i]);
        }
    }
}

共花了10毫秒
1
2
3
9
10

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值