الفرق بين المراجعتين ل"Ruby/IndexError"

من موسوعة حسوب
اذهب إلى التنقل اذهب إلى البحث
ط (مراجعة وتدقيق)
 
سطر 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: صفحة الصنف <code>IndexError</code> في روبي}}</noinclude>
+
</syntaxhighlight><noinclude>{{DISPLAYTITLE:الصنف <code>IndexError</code> في روبي}}</noinclude>
 
[[تصنيف: Ruby]]
 
[[تصنيف: Ruby]]
[[تصنيف: Ruby IndexError]]
+
[[تصنيف: Ruby Class]]
 +
[[تصنيف: Ruby Error]]
  
 
==مصادر<span> </span>==
 
==مصادر<span> </span>==
*[http://ruby-doc.org/core-2.5.1/IndexError.html قسم  الصنف IndexError في توثيق روبي الرسمي.]
+
*[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

مصادر