LOTUSSCRIPT 言語
Dim tomato As Variant, turnip As Variant Print IsObject(tomato) ' Output:False Set turnip = New Vegetable Print IsObject(turnip) ' Output:True Set tomato = New Fruit Print IsObject(tomato) ' Output:True
関連項目