الفرق بين المراجعتين لصفحة: «Ruby/IndexError»
< Ruby
لا ملخص تعديل |
جميل-بيلوني (نقاش | مساهمات) ط مراجعة وتدقيق |
||
سطر 1: | سطر 1: | ||
يُطلق الخطأ <code>IndexError</code> عندما يكون الفهرس المُعطى غير صالح.<syntaxhighlight lang="ruby"> | يُطلق الخطأ <code>IndexError</code> عندما يكون الفهرس (index) المُعطى غير صالح.<syntaxhighlight lang="ruby"> | ||
a = [:foo, :bar] | a = [:foo, :bar] | ||
a.fetch(0) #=> :foo | a.fetch(0) #=> :foo | ||
a[4] #=> nil | a[4] #=> nil | ||
a.fetch(4) #=> IndexError: index 4 outside of array bounds: -2...2 | a.fetch(4) #=> IndexError: index 4 outside of array bounds: -2...2 | ||
</syntaxhighlight><noinclude>{{DISPLAYTITLE: | </syntaxhighlight><noinclude>{{DISPLAYTITLE:الصنف <code>IndexError</code> في روبي}}</noinclude> | ||
[[تصنيف: Ruby]] | [[تصنيف: Ruby]] | ||
[[تصنيف: Ruby | [[تصنيف: Ruby Class]] | ||
[[تصنيف: Ruby Error]] | |||
==مصادر<span> </span>== | ==مصادر<span> </span>== | ||
*[http://ruby-doc.org/core-2.5.1/IndexError.html | *[http://ruby-doc.org/core-2.5.1/IndexError.html صفحة الصنف IndexError في توثيق روبي الرسمي.] |
المراجعة الحالية بتاريخ 07:02، 13 نوفمبر 2018
يُطلق الخطأ IndexError
عندما يكون الفهرس (index) المُعطى غير صالح.
a = [:foo, :bar]
a.fetch(0) #=> :foo
a[4] #=> nil
a.fetch(4) #=> IndexError: index 4 outside of array bounds: -2...2