All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alibaba.rocketmq.research.mix.Test1 Maven / Gradle / Ivy

There is a newer version: 3.1.8
Show newest version
/**
 * $Id: Test1.java 1831 2013-05-16 01:39:51Z shijia.wxr $
 */
package com.alibaba.rocketmq.research.mix;

/**
 * @author shijia.wxr
 */
public class Test1 {

    public static void test_1(String[] args) {
        long timeLong = System.currentTimeMillis();
        System.out.println(" timeLong = " + timeLong);
        int timeInt = (int) (timeLong / 1000);
        System.out.println(" timeInt = " + timeInt);
    }


    public static void main(String[] args) {
        test_1(args);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy