polynom.cpp
来自「《无线通信系统仿真——c++使用模型》这本书的源代码」· C++ 代码 · 共 17 行
CPP
17 行
// polynom.cpp
//
//#include "stdafx.h"
#include "iostream.h"
#include "galfield.h"
#include "gfelem.h"
#include "polynom.h"
PolyOverGF::PolyOverGF(GaloisField* gf)
{
pGalFld = gf;
GaloisFieldElement* pLowDegElem = new GaloisFieldElement(gf);
cout << "Hello from PolyOverGF ctor" << endl;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?