📄 popular.h
字号:
// Popular.h: interface for the Popular class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_POPULAR_H__401D66E7_7F25_4691_B313_BCE69BAAC335__INCLUDED_)
#define AFX_POPULAR_H__401D66E7_7F25_4691_B313_BCE69BAAC335__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "oding.h"
#include "Adaptability.h"
#include "stdio.h"
class Popular
{
public:
Popular(Coding *,Adaptability *,int);
virtual double * GetPop()=0;
double GetAdapt();
virtual void store(FILE *,FILE *)=0;
virtual void SetPop(double *)=0;
virtual void SetPop(Popular *)=0;
virtual ~Popular();
protected:
int dimension;
Coding * code;
double adaptation;
Adaptability * adapt;
};
#endif // !defined(AFX_POPULAR_H__401D66E7_7F25_4691_B313_BCE69BAAC335__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -