七周七 -ruby 1,2

# puts "hello"
#
# language = "mudy"
#
# puts "hello,#{language}"

# 4
# puts 4.class
# puts 4.methods


x = 4
puts 'This appears to be false' unless x == 4 #除非x=3才會打印這句話菠镇,

puts x <5

puts false.class

if x ==4 
  puts 'This appears to be ture'
end

unless x == 4
  puts 'This appers to be false'
else
  puts 'This appears to be ture'
end

# x = x-1  until x==0 

puts 'This is ture' if true
puts '中文' unless false
puts '不滿足條件才會進來' unless x==3

puts '滿足條件才會進來' if true

puts nil or true#臥槽,這個的值你猜是啥
puts true or nil

puts nil and true
puts "-------------"
puts true and false
puts false and true
puts "-------------"
# puts ture and this_will_cause_an_error
puts false && this_will_cause_an_error

# puts true | this_will

# puts 4+'four'
puts "-------------"
puts 'four'.class
puts 4.class
puts 4.0.class
puts true.class
puts false.class

puts "-------------"

def add_them_up
  4 + 4.0
end

puts add_them_up
puts "-------------"

puts 100.0.to_i#轉換為整數(shù)類型
puts '100.0'.to_i
puts 'hello'.to_i
puts 100.to_f#轉換為float類型的


# 3.times{puts 'hello'}#能夠執(zhí)行3次{}中的部分
range1 = (1..10).to_a#將range轉換成arr類型
puts range1
puts "#{range1}"

puts "-------------"

range2 = ('baa'..'ddz').to_a
# puts "#{range2}"#這一句特別逗

digits = 0..9
puts digits.include?(5)

puts digits.min
puts digits.max
puts "--------------"
# "Hello Ruby.".scan(/[Ruby\.]/){|x|puts "Hello Ruby.".index(x)}
# "Hello Ruby.".scan(/[Ruby\.]/){|x|puts x}
puts "Hello Ruby".index('Ruby')#在"Hello, Ruby."中,出"Ruby."所在下標承璃。

puts "-----------第二天-------------"


def tell_the_truth
  true
end

print tell_the_truth#print打印是不換行的

#散列表
numbers = {1=>'one',2=>'two'}
print numbers 

puts numbers[1]
puts 'string'.object_id
puts 'string'.object_id
puts 'string'.object_id
puts :string.object_id#:symbol符號利耍,就是一種前面帶有冒號的標識符
puts :string.object_id

def tell_the_truth(options={})
  if options[:profession] == :lawyer
    'it could be believed that this is almost certainly not false'
  else
    true
  end
end

puts tell_the_truth
puts tell_the_truth ({:profession=>:lawyer})#({})可以省略

x = 2
# print x.methods
# [:to_s, :inspect, :-@, :+, :-, :*, :/, :div, :%, :modulo, :divmod, :fdiv, :**, :abs, :magnitude, :==, :===, :<=>, :>, :>=, :<, :<=, :~, :&, :|, :^, :[], :<<, :>>, :to_f, :size, :zero?, :odd?, :even?, :succ, :integer?, :upto, :downto, :times, :next, :pred, :chr, :ord, :to_i, :to_int, :floor, :ceil, :truncate, :round, :gcd, :lcm, :gcdlcm, :numerator, :denominator, :to_r, :rationalize, :singleton_method_added, :coerce, :i, :+@, :eql?, :quo, :remainder, :real?, :nonzero?, :step, :to_c, :real, :imaginary, :imag, :abs2, :arg, :angle, :phase, :rectangular, :rect, :polar, :conjugate, :conj, :between?, :nil?, :=~, :!~, :hash, :class, :singleton_class, :clone, :dup, :taint, :tainted?, :untaint, :untrust, :untrusted?, :trust, :freeze, :frozen?, :methods, :singleton_methods, :protected_methods, :private_methods, :public_methods, :instance_variables, :instance_variable_get, :instance_variable_set, :instance_variable_defined?, :remove_instance_variable, :instance_of?, :kind_of?, :is_a?, :tap, :send, :public_send, :respond_to?, :extend, :display, :method, :public_method, :define_singleton_method, :object_id, :to_enum, :enum_for, :equal?, :!, :!=, :instance_eval, :instance_exec, :__send__, :__id__]

puts x.next
puts x.+@
puts x.to_enum

#關于數(shù)組
animals = ['lions','tigers','dogs']
puts animals.count#在這里使用.length 與.count都能返回數(shù)組的個數(shù)

puts animals[-1]#返回數(shù)組中的倒數(shù)第一個元素
puts animals[4]#越界訪問并沒有報錯
puts animals.class
# print animals.methods
# [:inspect, :to_s, :to_a, :to_ary, :frozen?, :==, :eql?, :hash, :[], :[]=, :at, :fetch, :first, :last, :concat, :<<, :push, :pop, :shift, :unshift, :insert, :each, :each_index, :reverse_each, :length, :size, :empty?, :find_index, :index, :rindex, :join, :reverse, :reverse!, :rotate, :rotate!, :sort, :sort!, :sort_by!, :collect, :collect!, :map, :map!, :select, :select!, :keep_if, :values_at, :delete, :delete_at, :delete_if, :reject, :reject!, :zip, :transpose, :replace, :clear, :fill, :include?, :<=>, :slice, :slice!, :assoc, :rassoc, :+, :*, :-, :&, :|, :uniq, :uniq!, :compact, :compact!, :flatten, :flatten!, :count, :shuffle!, :shuffle, :sample, :cycle, :permutation, :combination, :repeated_permutation, :repeated_combination, :product, :take, :take_while, :drop, :drop_while, :bsearch, :pack, :entries, :sort_by, :grep, :find, :detect, :find_all, :flat_map, :collect_concat, :inject, :reduce, :partition, :group_by, :all?, :any?, :one?, :none?, :min, :max, :minmax, :min_by, :max_by, :minmax_by, :member?, :each_with_index, :each_entry, :each_slice, :each_cons, :each_with_object, :chunk, :slice_before, :lazy, :nil?, :===, :=~, :!~, :class, :singleton_class, :clone, :dup, :taint, :tainted?, :untaint, :untrust, :untrusted?, :trust, :freeze, :methods, :singleton_methods, :protected_methods, :private_methods, :public_methods, :instance_variables, :instance_variable_get, :instance_variable_set, :instance_variable_defined?, :remove_instance_variable, :instance_of?, :kind_of?, :is_a?, :tap, :send, :public_send, :respond_to?, :extend, :display, :method, :public_method, :define_singleton_method, :object_id, :to_enum, :enum_for, :equal?, :!, :!=, :instance_eval, :instance_exec, :__send__, :__id__]

class Fixnum
  def my_times
    i = self
    while i > 0
      i = i - 1
      yield#暫停,去執(zhí)行塊里的代碼
    end
  end
end
4.my_times{puts 'frfr'}


class Tree
  attr_accessor :children,:node_name#??,這個實例變量名字寫錯了堂竟,說我未定義
  def initialize(name, children=[])
    @children = children
    @node_name = name
  end
  
  def visit_all(&block)
    visit &block
    children.each{|c| c.visit_all &block}
  end
  
  def visit(&block)
    block.call self
  end
end

ruby_tree = Tree.new("Ruby",[Tree.new("Reia"),Tree.new("Bob"),Tree.new("lucy")])
puts "visiting a tree" 
ruby_tree.visit{|node| puts node.node_name}
puts "visiting entire tree" 
ruby_tree.visit_all{|node|puts node.node_name}

puts 'begin'<=> 'end'
a = [1,4,3,6,2,8,5]
print a.sort
print a.inject(){|sum,i| sum+i}

最后編輯于
?著作權歸作者所有,轉載或內容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市玻佩,隨后出現(xiàn)的幾起案子出嘹,更是在濱河造成了極大的恐慌,老刑警劉巖咬崔,帶你破解...
    沈念sama閱讀 206,723評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件税稼,死亡現(xiàn)場離奇詭異,居然都是意外死亡垮斯,警方通過查閱死者的電腦和手機郎仆,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,485評論 2 382
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來兜蠕,“玉大人扰肌,你說我怎么就攤上這事⌒苎睿” “怎么了曙旭?”我有些...
    開封第一講書人閱讀 152,998評論 0 344
  • 文/不壞的土叔 我叫張陵,是天一觀的道長晶府。 經常有香客問我桂躏,道長,這世上最難降的妖魔是什么川陆? 我笑而不...
    開封第一講書人閱讀 55,323評論 1 279
  • 正文 為了忘掉前任剂习,我火速辦了婚禮,結果婚禮上较沪,老公的妹妹穿的比我還像新娘鳞绕。我一直安慰自己,他們只是感情好尸曼,可當我...
    茶點故事閱讀 64,355評論 5 374
  • 文/花漫 我一把揭開白布猾昆。 她就那樣靜靜地躺著,像睡著了一般骡苞。 火紅的嫁衣襯著肌膚如雪垂蜗。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,079評論 1 285
  • 那天解幽,我揣著相機與錄音贴见,去河邊找鬼。 笑死躲株,一個胖子當著我的面吹牛片部,可吹牛的內容都是我干的。 我是一名探鬼主播霜定,決...
    沈念sama閱讀 38,389評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼档悠,長吁一口氣:“原來是場噩夢啊……” “哼廊鸥!你這毒婦竟也來了?” 一聲冷哼從身側響起辖所,我...
    開封第一講書人閱讀 37,019評論 0 259
  • 序言:老撾萬榮一對情侶失蹤惰说,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后缘回,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體吆视,經...
    沈念sama閱讀 43,519評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 35,971評論 2 325
  • 正文 我和宋清朗相戀三年酥宴,在試婚紗的時候發(fā)現(xiàn)自己被綠了啦吧。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,100評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡拙寡,死狀恐怖授滓,靈堂內的尸體忽然破棺而出,到底是詐尸還是另有隱情肆糕,我是刑警寧澤褒墨,帶...
    沈念sama閱讀 33,738評論 4 324
  • 正文 年R本政府宣布,位于F島的核電站擎宝,受9級特大地震影響郁妈,放射性物質發(fā)生泄漏。R本人自食惡果不足惜绍申,卻給世界環(huán)境...
    茶點故事閱讀 39,293評論 3 307
  • 文/蒙蒙 一噩咪、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧极阅,春花似錦胃碾、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,289評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至奔脐,卻和暖如春俄周,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背髓迎。 一陣腳步聲響...
    開封第一講書人閱讀 31,517評論 1 262
  • 我被黑心中介騙來泰國打工峦朗, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人排龄。 一個月前我還...
    沈念sama閱讀 45,547評論 2 354
  • 正文 我出身青樓波势,卻偏偏與公主長得像,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子尺铣,可洞房花燭夜當晚...
    茶點故事閱讀 42,834評論 2 345

推薦閱讀更多精彩內容

  • UI設計圖都是帶圓角的拴曲,簡單寫一個 Shape 屬性搞定。但是需要每個 Shape 屬性的背景顏色都不一樣凛忿,那就需...
    simpleeeeee閱讀 17,658評論 2 11
  • 小學的時候,我和姐姐跟著爺爺奶奶生活澈灼。小時候,我家的門前有一株葡萄藤,葡萄藤的前面有一個曬稻谷用的場地,場地的前面...
    廉隅閱讀 687評論 0 2
  • 婆劃三分客,殊途六月寒侄非。 嬌娘多寵愛,九載滿辛酸流译。
    秋風起花香閱讀 180評論 2 4
  • 記得小時候 天是純粹的藍 云是大朵的白 有陽光穿過 似有金線鑲著邊 學校要我們全體到操場考試 太陽曬得人懶洋洋 我...
    布之兮閱讀 208評論 0 1