📄 makefile
字号:
# From Thinking in Java, 2nd Edition
# At http://www.BruceEckel.com
# (c) Bruce Eckel 2000
# Copyright notice in Copyright.txt
# Automatically-generated MAKEFILE
# For examples in directory .\com\bruceeckel\tools
# using the JDK 1.2 compiler
# Invoke with: make
JVC = javac
JVCFLAGS =
.SUFFIXES : .class .java
.java.class :
$(JVC) $(JVCFLAGS) $<
all: \
P.class \
Assert.class
P.class: P.java
Assert.class: Assert.java
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -