الفرق بين المراجعتين لصفحة: «Ruby/IOError»

من موسوعة حسوب
لا ملخص تعديل
لا ملخص تعديل
سطر 1: سطر 1:
<noinclude>{{DISPLAYTITLE: صفحة الصنف <code>IOError</code> في روبي}}</noinclude>
<noinclude>{{DISPLAYTITLE:الصنف <code>IOError</code> في روبي}}</noinclude>
[[تصنيف: Ruby]]
[[تصنيف: Ruby]]
[[تصنيف: Ruby IOError]]
[[تصنيف: Ruby IOError]]

مراجعة 23:36، 13 نوفمبر 2018

يُطلق الاستثناء IOError عند فشل عملية د/خ (IO operation)

File.open("/etc/hosts") {|f| f << "example"}
  #=> IOError: not opened for writing

File.open("/etc/hosts") {|f| f.close; f.read }
  #=> IOError: closed stream

تذكر أن فشل بعض عمليات د/خ (IO operation) قد يؤدي إلى إطلاق الاستثناءات SystemCallError، وهذه الاستثناءات ليست متفرعة من الصنف IOError.

File.open("does/not/exist")
  #=> Errno::ENOENT: No such file or directory - does/not/exist

مصادر