亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

ruby的if判斷

發布時間:2020-10-03 23:13:23 來源:網絡 閱讀: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

如果程序在后臺運行,那么需要將打印改為寫日志

#!/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、判斷文件是否可執行

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

5、判斷文件大小

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


6、如果僅僅是判斷是否為真,也可以簡寫,比如

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問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

宁明县| 延边| 城固县| 探索| 桑日县| 罗山县| 永新县| 永泰县| 朔州市| 上思县| 北京市| 金乡县| 延川县| 卢湾区| 安丘市| 镇坪县| 天镇县| 舟山市| 上栗县| 宜昌市| 夏津县| 华容县| 广丰县| 巢湖市| 阿荣旗| 丹凤县| 马龙县| 永州市| 木兰县| 温宿县| 遂溪县| 青冈县| 白朗县| 浦江县| 神农架林区| 临武县| 沙湾县| 上饶市| 兰州市| 乌拉特中旗| 卓尼县|