ee.List.swap
קל לארגן דפים בעזרת אוספים
אפשר לשמור ולסווג תוכן על סמך ההעדפות שלך.
מחליפה בין הרכיבים במיקומים שצוינו. מיקום שלילי נספר לאחור מסוף הרשימה.
שימוש | החזרות |
---|
List.swap(pos1, pos2) | רשימה |
ארגומנט | סוג | פרטים |
---|
זה: list | רשימה | |
pos1 | מספר שלם | |
pos2 | מספר שלם | |
אלא אם צוין אחרת, התוכן של דף זה הוא ברישיון Creative Commons Attribution 4.0 ודוגמאות הקוד הן ברישיון Apache 2.0. לפרטים, ניתן לעיין במדיניות האתר Google Developers. Java הוא סימן מסחרי רשום של חברת Oracle ו/או של השותפים העצמאיים שלה.
עדכון אחרון: 2025-07-26 (שעון UTC).
[null,null,["עדכון אחרון: 2025-07-26 (שעון UTC)."],[[["\u003cp\u003eThe \u003ccode\u003eList.swap\u003c/code\u003e method exchanges elements within a list based on their positions.\u003c/p\u003e\n"],["\u003cp\u003ePositions can be specified using positive or negative integers, with negative values counting backwards from the end of the list.\u003c/p\u003e\n"],["\u003cp\u003eThe method modifies the original list and returns the updated list.\u003c/p\u003e\n"]]],["The `List.swap` function exchanges elements within a list based on their positions. It accepts two integer arguments, `pos1` and `pos2`, representing the positions of the elements to be swapped. Negative positions are interpreted as offsets from the end of the list. The function modifies the list in place and returns the updated list. It takes the list as input and requires two integer position inputs.\n"],null,["# ee.List.swap\n\nSwaps the elements at the specified positions. A negative position counts backwards from the end of the list.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|-------------------------|---------|\n| List.swap`(pos1, pos2)` | List |\n\n| Argument | Type | Details |\n|--------------|---------|---------|\n| this: `list` | List | |\n| `pos1` | Integer | |\n| `pos2` | Integer | |"]]