代码拉取完成,页面将自动刷新
# tolua
**Description:**
  The `tolua` record provides utilities for interfacing between C++ and Lua.
## type
**Type:** Function.
**Description:**
  Returns the C++ object type of a Lua object.
**Signature:**
```tl
type: function(item: any): string
```
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| item | any | The Lua object to get the type of. |
**Returns:**
| Return Type | Description |
| --- | --- |
| string | The C++ object type. |
## cast
**Type:** Field.
**Description:**
  Attempts to cast a Lua object to a C++ type object.
**Signature:**
```tl
cast: function<T>(item: any, name: string): T | nil
```
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| item | any | The Lua object to cast. |
| name | string | The name of the C++ type to cast to. |
**Returns:**
| Return Type | Description |
| --- | --- |
| T\|nil | The cast object, or `nil` if the cast fails. |
## class
**Type:** Function.
**Description:**
  Gets the class object for a given class name.
**Signature:**
```tl
class: function(className: string): table | nil
```
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| className | string | The name of the class to get the table for. |
**Returns:**
| Return Type | Description |
| --- | --- |
| table\|nil | The class table, or `nil` if the class does not exist. |
## setpeer
**Type:** Function.
**Description:**
  Sets the peer table for an object. A pear table is a table referenced by a Lua userdata providing custom fields for this userdata object.
**Signature:**
```tl
setpeer: function(obj: Object, data: table)
```
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| obj | Object | The object to set the peer table for. |
| data | table | The table to use as the peer table. |
## getpeer
**Type:** Function.
**Description:**
  Gets the peer table for an object. A pear table is a table referenced by a Lua userdata providing custom fields for this userdata object.
**Signature:**
```tl
getpeer: function(obj: Object): table
```
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| obj | Object | The object to get the peer table for. |
**Returns:**
| Return Type | Description |
| --- | --- |
| table | The peer table, or nil if the object has no peer table. |
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。