firstsample.java
来自「经典教材:java核心技术卷1、卷2的所有源代码」· Java 代码 · 共 18 行
JAVA
18 行
/**
@version 1.01 1997-03-22
@author Gary Cornell
*/
/*
This is the first sample program in Core Java Chapter 3
Copyright (C) 1997 Cay Horstmann and Gary Cornell
*/
public class FirstSample
{
public static void main(String[] args)
{
System.out.println("We will not use 'Hello, World!'");
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?