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

📄 makefile

📁 thinking in Java书中 的源代码
💻
字号:
# 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 .\c10
# using the JDK 1.2 compiler
# Invoke with: make

JVC = javac
JVCFLAGS =
.SUFFIXES : .class .java
.java.class :
	$(JVC) $(JVCFLAGS) $<

all:  \
	SimpleExceptionDemo.class \
	FullConstructors.class \
	ExtraFeatures.class \
	ExceptionMethods.class \
	Rethrowing.class \
	ThrowOut.class \
	RethrowNew.class \
	NeverCaught.class \
	FinallyWorks.class \
	OnOffSwitch.class \
	WithFinally.class \
	AlwaysFinally.class \
	LostMessage.class \
	StormyInning.class \
	Cleanup.class \
	Human.class


SimpleExceptionDemo.class: SimpleExceptionDemo.java
FullConstructors.class: FullConstructors.java
ExtraFeatures.class: ExtraFeatures.java
ExceptionMethods.class: ExceptionMethods.java
Rethrowing.class: Rethrowing.java
ThrowOut.class: ThrowOut.java
RethrowNew.class: RethrowNew.java
NeverCaught.class: NeverCaught.java
FinallyWorks.class: FinallyWorks.java
OnOffSwitch.class: OnOffSwitch.java
WithFinally.class: WithFinally.java
AlwaysFinally.class: AlwaysFinally.java
LostMessage.class: LostMessage.java
StormyInning.class: StormyInning.java
Cleanup.class: Cleanup.java
Human.class: Human.java

⌨️ 快捷键说明

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