tzobject.cpp
来自「关联规则发现vc源代码」· 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 + -
显示快捷键?