📄 compiletimeobject.java
字号:
package JSHOP2;/** All the objects at compile time are instances of classes that are derived * from this abstract class. * * @author Okhtay Ilghami * @author <a href="http://www.cs.umd.edu/~okhtay">http://www.cs.umd.edu/~okhtay</a> * @version 1.0.3*/public abstract class CompileTimeObject{ /** The new line character in the platform JSHOP2 is running on. */ final static String endl = System.getProperty("line.separator"); /** This abstract function produces the Java code needed to implement this * compile time element. * * @return * the produced code as a <code>String</code>. */ public abstract String toCode();}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -