countingexample.java
来自「该原代码是实现机器学习中条件随机场模型的Java代码」· Java 代码 · 共 31 行
JAVA
31 行
/**
*
*/
package lcrf.counting;
import java.util.List;
import lcrf.logic.Atom;
/**
* @author Bernd Gutmann
*
*/
public class CountingExample {
public int number;
public List<Atom> content;
public Object auxObject;
public CountingExample(List<Atom> content, int number) {
this.number = number;
this.content = content;
this.auxObject = null;
}
public String toString() {
return content.toString() + " : " + number;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?