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
.
Contents
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
Dansk –
Deutsch –
English –
Español –
Français –
Indonesia –
Italiano –
Lietuviškai –
Magyar –
Nederlands –
Polski –
Português –
Română –
Slovenský –
Suomi –
Svenska –
Türkçe –
Česky –
Ελληνικά –
Български –
Русский –
Српски –
Українська –
עברית –
ไทย –
日本語 –
正體中文 –
简体中文 –
Tiếng Việt –
한국어
More info