item.java

来自「数据挖掘算法(Apriori)--JAVA实现」· Java 代码 · 共 15 行

JAVA
15
字号
//package apriori;
//present an item
public class Item
{
	int key ;
	public Item(int i){
		key = i ;
	}

	public int Key() //return the key of the item
	{
		return key ;
	}
}

⌨️ 快捷键说明

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