Thinking in Java-Chapter 2-创建第一个Java程序
Posted liyifaner
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Thinking in Java-Chapter 2-创建第一个Java程序相关的知识,希望对你有一定的参考价值。
1 import java.util.*; 2 /**The first Thinking in Java example program. 3 * Displays a string and today‘s date. 4 * @author 12208 5 * @author http://www.cnblogs.com/liyifaner/ 6 */ 7 public class HelloDate { 8 /**Entry point to class & application. 9 * @param args array of string arguments 10 * @throws exceptions No exceptions thrown 11 */ 12 public static void main(String[] args) { 13 System.out.println("Hello,it‘s:"+new Date()); 14 } 15 }/*Output:(55% match) 16 Hello,it‘s:Sun Apr 29 19:25:08 CST 2018 17 *///:~
以后可能不会写过多的注释了。
以上是关于Thinking in Java-Chapter 2-创建第一个Java程序的主要内容,如果未能解决你的问题,请参考以下文章