📄 tfn.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 + -