Ruby中對一元操作符重載執行個體_ruby專題

來源:互聯網
上載者:User

一元操作大家都知道,就是運算式的操作符只有一個輸入值。這個在C和Java中都很常見。今天我們要探討一下Ruby中的一元操作符重載。
一元操作符有:+ – * ! & 等,為了避免與數值的 + – 混淆,重載一元操作符,要在後面加上一個 @ 操作符。

1. 一個簡單的一元操作符重載例子:-@ 操作符
我們以String類為例子。String預設沒有定義 – 操作符:

複製代碼 代碼如下:

1.9.3p125 :027 > a = "Hello"

=> "Hello"

1.9.3p125 :028 > -a

NoMethodError: undefined method `-@' for "Hello":String

from (irb):28

from ~/.rvm/rubies/ruby-1.9.3-p125/bin/irb:16:in `'

1.9.3p125 :029 >

我們通過Open Class的方式(Open Class可參考)給類型為String的a對象,加上一元操作:

複製代碼 代碼如下:

1.9.3p125 :029 > def a.-@;downcase;end;

1.9.3p125 :036 > a
=> “Hello”
1.9.3p125 :037 > -a
=> “hello”
1.9.3p125 :038 >


從上面代碼看到我們已經將 – 這個操作符添加到了a對象中。

2. 其他的操作符:+@, ~, !
我們再次使用Open Class的特性,給String類加上方法:

複製代碼 代碼如下:

 #!/usr/local/ruby/bin/ruby

 class String

 def -@

 downcase

 end


 def +@

 upcase

 end


 def ~

 # Do a ROT13 transformation - http://en.wikipedia.org/wiki/ROT13

 tr 'A-Za-z', 'N-ZA-Mn-za-m'

 end


 def to_proc

 Proc.new { self }

 end


 def to_a

 [ self.reverse ]

 end

 end


 str = "Teketa's Blog is GREAT"

 puts "-#{str} = #{-str}"

 puts "+#{str} = #{+str}"

 puts "~#{str} = #{~str}"

 puts "#{str}.to_a = #{str.to_a}"

 puts %w{a, b}.map &str

 puts *str


上面代碼的運行結果:

複製代碼 代碼如下:

-Teketa's Blog is GREAT = teketa's blog is great

+Teketa's Blog is GREAT = TEKETA'S BLOG IS GREAT

~Teketa's Blog is GREAT = Grxrgn'f Oybt vf TERNG

Teketa's Blog is GREAT.to_a = ["TAERG si golB s'atekeT"]

Teketa's Blog is GREAT

Teketa's Blog is GREAT

TAERG si golB s'atekeT

我們注意到,*和&操作符,是通過to_a 和 to_proc來重載的,在Ruby中,要重載*和&就是通過重載to_a和to_proc方法來實現的。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.