Difference between revisions of "Object:type"

(Undo revision 9261 by Chien (talk))
Line 1: Line 1:
 +
Gets the type of the object as a string.
  
Lấy về kiểu của đối tượng, biểu diễn dưới dạng chuỗi.
+
== Function ==
== Hàm ==
+
=== Synopsis ===
=== Tóm tắt ===
 
 
<source lang="lua">
 
<source lang="lua">
 
type = Object:type()
 
type = Object:type()
 
</source>
 
</source>
=== Đối số ===
+
=== Arguments ===
(Không)
+
None.
=== Kết quả trả lại ===
+
=== Returns ===
{{param|string|type|Kiểu, dưới dạng chuỗi.}}
+
{{param|string|type|The type as a string.}}
== Ví dụ ==
+
== Examples ==
=== In ra kiểu của đối tượng ===
+
=== Printing the type of an object ===
 
<source lang="lua">
 
<source lang="lua">
 
image = love.graphics.newImage("test.png")
 
image = love.graphics.newImage("test.png")
print(image:type()) -- ra kết quả: Image
+
print(image:type()) -- outputs: Image
 
source = love.audio.newSource("test.ogg")
 
source = love.audio.newSource("test.ogg")
print(source:type()) -- ra kết quả: Source
+
print(source:type()) -- outputs: Source
 
</source>
 
</source>
== Xem thêm ==
+
== See Also ==
* [[parent::Object (Tiếng Việt)|Object]]
+
* [[parent::Object]]
{{#set:Description=Lấy về kiểu của đối tượng, biểu diễn dưới dạng chuỗi.}}
+
{{#set:Description=Gets the type of the object as a string.}}
 
{{#set:Since=000}}
 
{{#set:Since=000}}
 
[[Category:Functions]]
 
[[Category:Functions]]
== Ngôn ngữ khác ==
+
== Other Languages ==
 
{{i18n|Object:type}}
 
{{i18n|Object:type}}

Revision as of 10:13, 14 November 2012

Gets the type of the object as a string.

Function

Synopsis

type = Object:type()

Arguments

None.

Returns

string type
The type as a string.

Examples

Printing the type of an object

image = love.graphics.newImage("test.png")
print(image:type()) -- outputs: Image
source = love.audio.newSource("test.ogg")
print(source:type()) -- outputs: Source

See Also

Other Languages