compiletimeobject.java
来自「SHOP2 一个人工智能里面关于任务分解和任务规划的系统。JSHOP2是其jav」· Java 代码 · 共 24 行
JAVA
24 行
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 + =
减小字号Ctrl + -
显示快捷键?