LlListInsertList

来自人工智能助力教育知识百科
Ty讨论 | 贡献2020年8月22日 (六) 02:38的版本 (创建页面,内容为“{{LSL Header|ml=*}}{{LSLC|Keywords}}{{LSLC|Flow Control}}{{LSLC|}} {{函数详情 |函数名 = Function: list llListInsertList( list dest, list src, integer start…”)
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)
跳转至: 导航搜索

Template:Needs Translation/


函数名
Function: list llListInsertList( list dest, list src, integer start );
参数:

list dest list src integer start

返回值:

返回一个列表,其中包含 dest 中的所有元素,但在位置开始处插入 src 中的元素。

注意事项
如果开始超出界限,脚本将继续执行,不会出现错误消息
示例
示例一
list numbers = [3, "three", 2, "two", 1, "one"];
default
{
    state_entry()
    {
        llOwnerSay(llDumpList2String(numbers, ","));
        // Object: 3,three,2,two,1,one
        integer index = llListFindList(numbers, [2]);
        if (index != -1)
        {
            numbers = llListInsertList(numbers, [2.5, "two and a half"], index);
            llOwnerSay(llDumpList2String(numbers, ","));
            // Object: 3,three,2.500000,two and a half,2,two,1,one
        }
    }
}
相关函数
llDeleteSubList

llList2List llListReplaceList

相关事件