命令 Instruction Type
new オブジェクト名 Form new object name
Commentary
新規にオブジェクトを生成します。 Creates a new object.
サンプルコード Sample code
dObj = new Date(); dObj = new Date ();
outputs[0] = "今は"+dObj.getHours()+"時です"; outputs [0] = "now" + dObj.getHours () + "is the time";