考试第五题
Posted bichen-01
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了考试第五题相关的知识,希望对你有一定的参考价值。
package test05; import java.text.SimpleDateFormat; import java.util.Date; public class Demo implements Runnable @Override public void run() // TODO Auto-generated method stub Date date = new Date(); SimpleDateFormat simpleDateFormat = new SimpleDateFormat("HH:mm:ss"); String s = simpleDateFormat.format(date); System.out.println(s); public static void main(String[] args) Demo d = new Demo(); while(true) Thread t = new Thread(d); try t.sleep(1000); catch (InterruptedException e) // TODO Auto-generated catch block e.printStackTrace(); t.start();
以上是关于考试第五题的主要内容,如果未能解决你的问题,请参考以下文章
全国计算机等级考试二级Python(2021年9月)备考笔记 第十四天