الفرق بين المراجعتين لصفحة: «Ruby/IOError»
< Ruby
أنشأ الصفحة ب'<noinclude>{{DISPLAYTITLE: صفحة الصنف <code>IOError</code> في روبي}}</noinclude> تصنيف: Ruby تصنيف: Ruby IOError يُطلق الاستث...' |
جميل-بيلوني (نقاش | مساهمات) ط مراجعة وتدقيق. |
||
(مراجعتان متوسطتان بواسطة مستخدم واحد آخر غير معروضتين) | |||
سطر 1: | سطر 1: | ||
<noinclude>{{DISPLAYTITLE: | <noinclude>{{DISPLAYTITLE:الصنف <code>IOError</code> في روبي}}</noinclude> | ||
[[تصنيف: Ruby]] | [[تصنيف: Ruby]] | ||
[[تصنيف: Ruby | [[تصنيف: Ruby Class]] | ||
يُطلق الاستثناء <code>IOError</code> | [[تصنيف: Ruby Error]] | ||
[[تصنيف: Ruby IO]] | |||
يُطلق الاستثناء <code>IOError</code> عند فشل عملية [[Ruby/IO|إدخال/إخراج]] (IO operation) في روبي.<syntaxhighlight lang="ruby"> | |||
File.open("/etc/hosts") {|f| f << "example"} | |||
#=> IOError: not opened for writing | |||
< | |||
File.open("/etc/hosts") {|f| f.close; f.read } | |||
#=> IOError: closed stream | |||
</syntaxhighlight>تذكر أنَّ فشل بعض عمليات [[Ruby/IO|الإدخال/الإخراج]] قد يؤدي إلى إطلاق الاستثناء <code>[[Ruby/SystemCallError|SystemCallError]]</code>، وهذا الاستثناء ليس متفرع من الصنف <code>IOError</code>.<syntaxhighlight lang="ruby"> | |||
File.open("does/not/exist") | |||
#=> Errno::ENOENT: No such file or directory - does/not/exist | |||
</syntaxhighlight> | </syntaxhighlight> | ||
==مصادر== | ==مصادر== | ||
*[http://ruby-doc.org/core-2.5.1/ | *[http://ruby-doc.org/core-2.5.1/IOError.html صفحة الصنف IOError في توثيق روبي الرسمي.] |
المراجعة الحالية بتاريخ 08:10، 8 ديسمبر 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
تذكر أنَّ فشل بعض عمليات الإدخال/الإخراج قد يؤدي إلى إطلاق الاستثناء SystemCallError
، وهذا الاستثناء ليس متفرع من الصنف IOError
.
File.open("does/not/exist")
#=> Errno::ENOENT: No such file or directory - does/not/exist