構造付き:
struct element_data
{
int size;
int type;
int nID;
int attribute;
double fValue;
int mode;
bool bTemp;
};
...すべてのメンバーを手動でゼロで初期化する必要があります:
inline element_data() : //Empty constructor
size(0),
type(0),
nID(0),
attribute(0),
fValue(0),
mode(0),
bTemp(false)
{}
コマンドが多すぎると、電卓の速度が低下する可能性があります。これを行うことができる他の方法はありますか?たとえば、単一のコマンドでは、すべての値がゼロ値を取ります。