溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

ruby的if判斷

發(fā)布時(shí)間:2020-10-03 23:13:23 來源:網(wǎng)絡(luò) 閱讀:478 作者:紫色葡萄 欄目:編程語言

if判斷的基本格式如下:

if 條件 then   #then可省略
  處理
end


1、判斷文件是否存在

#!/usr/bin/env ruby
if File.exist?("/etc/hosts")
  print "ok"
end

加上else

#!/usr/bin/env ruby
if File.exist?("/etc/hosts")
  print "ok"
else
  print "error,file not exist"
end

如果程序在后臺(tái)運(yùn)行,那么需要將打印改為寫日志

#!/usr/bin/env ruby
require 'logger'

logger = Logger.new('/tmp/test.log','daily')
logger.sev_threshold = Logger::DEBUG

if File.exist?("/etc/hosts")
  logger.debug "ok"
  logger.close
else
  logger.debug "error,file not exist"
  logger.close
end



2、判斷文件是否可寫

if File.writable?("/etc/hosts") { print "ok"}

3、判斷文件是否可讀

if File.readable?("/etc/hosts")

4、判斷文件是否可執(zhí)行

if File.executable?("/etc/hosts")

5、判斷文件大小

if File.size?("/etc/hosts") #文件大小非零為true
if File.zero?("/etc/hosts") #文件大小為零位true


6、如果僅僅是判斷是否為真,也可以簡(jiǎn)寫,比如

a = 5
if a > 4
  b = 3
end
puts a
puts b

c = 1
d = 3 if (c < 6)
puts c
puts d

puts "ok" if a > b




向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI