JP1/NETM/DM Automatic Installation Toolガイド (Windows(R)用)
演算子<演算子名>で<データ型1>と<データ型2>は混在できません。
DEFINE
{
integer sloop_max = 0;
bool IsPathSet;
}
MAIN
{
sloop_max = sloop_max & IsPathSet; // ビット演算の論理積に対してinteger型とbool型が指定されています
}DEFINE
{
integer sloop_max = 0;
integer sloop_count;
}
MAIN
{
sloop_max = sloop_max & sloop_count; // ビット演算の論理積に対してinteger型とinteger型を指定しました
}All Rights Reserved. Copyright (C) 2013, 2015, Hitachi, Ltd.