Object:typeOf (Français)

Teste si un objet est du type spécifié. Si c'est le cas, cette fonction retourne true, sinon elle retourne false.

Fonction

Synopsis

b = Object:typeOf( name )

Arguments

string (Français) name
Nom du type pour le test.

Retour

boolean (Français) b
true si l'objet est du type spécifié, false sinon.

Exemples

Vérifier le type d'un objet

image = love.graphics.newImage("test.png")
print(image:typeOf("Object")) -- affiche: true
print(image:typeOf("Drawable")) -- affiche: true
print(image:typeOf("Image")) -- affiche: true
print(image:typeOf("MouseJoint")) -- affiche: false

Voir également

Autres langues