LlList2List

来自人工智能助力教育知识百科
跳转至: 导航搜索

Template:Needs Translation/


函数名
Function: list llList2List( list src, integer start, integer end );
参数:

list src integer start – start index integer end – end index

返回值:

返回一个从开始到结束的 src 片段的列表。

注意事项
*如果开始或结束都超出了界限,脚本将继续执行,而不会出现错误消息。
  • 当 start 超过 end 时,start 和 end 将形成一个排除范围(大约: start > end)。
示例
示例一
list numbers = [1, 2, 3, 4, 5];
default
{
    state_entry()
    {
        integer index = llListFindList(numbers, [3]);
        if (index != -1)
        {
            list three_four = llList2List(numbers, index, index + 1);
            llOwnerSay(llDumpList2String(three_four, ","));
            // Object: 3,4
        }
    }
}
相关函数
llDeleteSubList

llListInsertList llListReplaceList

相关事件