美文网首页
常用函数

常用函数

作者: ShutLove | 来源:发表于2018-02-11 15:42 被阅读0次
    1. 获取当前类名
      非静态方法:this.getClass().getName()
      静态方法:Thread.currentThread().getStackTrace()[1].getClassName()
    2. 获取当前方法名
      Thread.currentThread().getStackTrace()[1].getMethodName()
    3. 获取当前时间戳
      毫秒:System.currentTimeMillis();
      纳秒:System.nanoTime();

    相关文章

      网友评论

          本文标题:常用函数

          本文链接:https://www.haomeiwen.com/subject/rjaktftx.html