⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tfn.h

📁 大规模定制中评价系统源码!对其中配置后的产品进行优化,寻优!
💻 H
字号:
#pragma once

class CTFN
{
private:
	double *m_pdNum;
	int m_nSize;

public:
	CTFN(const CTFN &otherTFN);
	int GetSize() const;
	void SetSize(int nSize);
	CTFN (int nSize = 3);
	
	void Init();
	const CTFN& operator=(const CTFN &othertfn);
	CTFN operator+(const CTFN &othertfn);
	CTFN operator-(const CTFN &othertfn);
	CTFN operator*(const CTFN &othertfn);
	CTFN operator+(double d);
	CTFN operator-(double d);
	CTFN operator*(double d);
	CTFN operator/(double d);
	double doublize();
	int GetMax();
	int GetMin();
	double GetDmax(double dMax);
	double GetDmin(double dMin);
public:
	~CTFN(void);
};

⌨️ 快捷键说明

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