tzobject.cpp

来自「本程序实现的是关联规则挖掘领域中规则发现算法.」· C++ 代码 · 共 62 行

CPP
62
字号
// tzObject.cpp: implementation of the tzObject class.
//
//////////////////////////////////////////////////////////////////////
#include <stdio.h>
#include "stdafx.h"
#include "tzObject.h"

//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////

//***************************************************************************
// tzObject::tzObject()
//
tzObject::tzObject()
{
}


//***************************************************************************
// tzObject::~tzObject()
//
tzObject::~tzObject()
{
}


//***************************************************************************
// int tzObject::compare(tzObject *)
//
int tzObject::compare(tzObject *)
{
	return 0;
}


//***************************************************************************
// tzObject *tzObject::clone()
//
tzObject *tzObject::clone()
{
	return new tzObject;
}

//***************************************************************************
// int tzObject::key()
//
int tzObject::key()
{
	return -1;
}


//***************************************************************************
// int tzObject::key()
//
void tzObject::dump()
{
	printf("Dump Object\n");
}

⌨️ 快捷键说明

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