⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 version.java

📁 关于迭代器、构造器
💻 JAVA
字号:
// The version of this release.// (c) 2001,2002 duane a. baileypackage structure;/** * A utility class that can be used to determine the version of software * currently being used.  * Simply run this class from the command prompt to see the version info. */public class Version{    public final static int major = 5;    public final static String minor = "23-Aug-2002-13:16";    public final static String name = "structure";    public final static String author = "duane a. bailey";    public final static String info = "package "+name+", version "+major+", release "+minor+", (c) 1997-2002 "+author;    public static void main(String args[])    {	if (args.length != 0)	{	    if (args[0].equals("-m")) System.out.println(minor);	    else if (args[0].equals("-M")) System.out.println(major);	    else if (args[0].equals("-p")) System.out.println(name);	    else if (args[0].equals("-a")) System.out.println(author);	} else System.out.println(info);    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -