本文简要介绍ruby语言中 Errno模块
的用法。
Ruby 异常对象是 Exception
的子类。但是,操作系统通常使用纯整数报告错误。 Module
Errno
是动态创建的,用于将这些操作系统错误映射到 Ruby 类,每个错误号生成自己的 SystemCallError
子类。由于子类是在模块 Errno
中创建的,因此它的名称将以 Errno::
开头。
Errno::
类的名称取决于 Ruby 运行的环境。在典型的 Unix 或 Windows 平台上,有 Errno
类,例如 Errno::EACCES、Errno::EAGAIN、Errno::EINTR 等。
对应于特定错误的整数操作系统错误号可用作类常量 Errno::
error
::Errno
。
Errno::EACCES::Errno #=> 13
Errno::EAGAIN::Errno #=> 11
Errno::EINTR::Errno #=> 4
您的特定平台上的操作系统错误的完整列表可用作 Errno
的常量。
Errno.constants #=> :E2BIG, :EACCES, :EADDRINUSE, :EADDRNOTAVAIL, ...
相关用法
- Ruby ErrorHighlight.spot用法及代码示例
- Ruby ERB.location=用法及代码示例
- Ruby Enumerable.any?用法及代码示例
- Ruby Enumerable min_by()用法及代码示例
- Ruby Enumerable each_witth_object()用法及代码示例
- Ruby Enumerable.slice_before用法及代码示例
- Ruby Enumerable each_cons()用法及代码示例
- Ruby Enumerator each_with_index用法及代码示例
- Ruby Encoding.compatible?用法及代码示例
- Ruby Enumerable.uniq用法及代码示例
- Ruby Enumerator each_with_object用法及代码示例
- Ruby ERBIO类用法及代码示例
- Ruby ENV.empty?用法及代码示例
- Ruby Enumerable uniq()用法及代码示例
- Ruby Enumerable.find_all用法及代码示例
- Ruby Enumerator.peek_values用法及代码示例
- Ruby Enumerable.max用法及代码示例
- Ruby Enumerable.map用法及代码示例
- Ruby Enumerable min()用法及代码示例
- Ruby Enumerable.min_by用法及代码示例
- Ruby Enumerable.find_index用法及代码示例
- Ruby Enumerator类用法及代码示例
- Ruby Enumerable find_index()用法及代码示例
- Ruby ENV.delete_if用法及代码示例
- Ruby Enumerable find_all()用法及代码示例
注:本文由纯净天空筛选整理自ruby-lang.org大神的英文原创作品 Errno模块。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。