h_layer.h
来自「本文介绍了一个用java语言编写的用于分析消费行为的数据挖掘应用软件」· C头文件 代码 · 共 29 行
H
29 行
// H_Layer.h: interface for the CH_Layer class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_H_LAYER_H__E6B5D662_6805_4238_B8D7_50A424CAE416__INCLUDED_)
#define AFX_H_LAYER_H__E6B5D662_6805_4238_B8D7_50A424CAE416__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "Layer.h"
#include "H_Node.h"
class CH_Layer : public CLayer
{
public:
CH_Layer();
CH_Layer(short node_num);
CH_Node& GetNode(short n);//取相应节点
void SetNode_Num(short node_num);
virtual ~CH_Layer();
private:
CH_Node *h_nodes; //隐藏层节点
};
#endif // !defined(AFX_H_LAYER_H__E6B5D662_6805_4238_B8D7_50A424CAE416__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?