Ruby 1.8とRuby 1.9の違いは何ですか


102

Rubyの「現在の」バージョン(1.8)と「新しい」バージョン(1.9)の違いは明確ではありません。違いの「簡単な」または「簡単な」説明はありますか、そしてそれがなぜそんなに違うのですか?


1
Ruby 1.8.6-Ruby 1.8.7には1.9からのライブラリ構造がたくさんあります。
Andrew Grimm、

1.8バージョンを「古い」バージョン、1.9.2以降を「現在の」バージョンと見なします。私は互換性チェックに1.8.7のみを使用していますが、1.9.2で開発しています。
Tin Man

5
@Telemachus:リンクが壊れています。
Andrew Grimm

1
@Telemachus、アンドリューグリム-このarchive.orgリンク作品- web.archive.org/web/20090423003136/http://eigenclass.org/...
J.Merrill

回答:


170

サム・ルビーには、違いを概説するクールなスライドショーがあります

参照しやすくするためにこの情報をインラインにするため、およびリンクが将来的に機能しなくなる場合のために、サムのスライドの概要を以下に示します。スライドショーはレビューするのにそれほど圧倒的ではありませんが、すべてをこのようなリストにレイアウトすることも役に立ちます。

Ruby 1.9-主な機能

  • パフォーマンス
  • スレッド/ファイバー
  • エンコード/ Unicode
  • gemsは(ほとんど)組み込み済みです
  • ifステートメントはRubyでスコープを導入しません。

何が変わったの?

単一の文字列。

Ruby 1.9

irb(main):001:0> ?c
=> "c"

Ruby 1.8.6

irb(main):001:0> ?c
=> 99

文字列インデックス。

Ruby 1.9

irb(main):001:0> "cat"[1]
=> "a"

Ruby 1.8.6

irb(main):001:0> "cat"[1]
=> 97

{"a"、 "b"}サポートされなくなりました

Ruby 1.9

irb(main):002:0> {1,2}
SyntaxError: (irb):2: syntax error, unexpected ',', expecting tASSOC

Ruby 1.8.6

irb(main):001:0> {1,2}
=> {1=>2}

アクション: {1 => 2}に変換します


Array.to_s 句読点を含む

Ruby 1.9

irb(main):001:0> [1,2,3].to_s
=> "[1, 2, 3]"

Ruby 1.8.6

irb(main):001:0> [1,2,3].to_s
=> "123"

アクション:代わりに.joinを使用してください


コロンはwhenステートメントで有効ではなくなりました

Ruby 1.9

irb(main):001:0> case 'a'; when /\w/: puts 'word'; end
SyntaxError: (irb):1: syntax error, unexpected ':',
expecting keyword_then or ',' or ';' or '\n'

Ruby 1.8.6

irb(main):001:0> case 'a'; when /\w/: puts 'word'; end
word

アクション:セミコロン、その後、または改行を使用してください


ブロック変数がローカル変数をシャドウイング

Ruby 1.9

irb(main):001:0> i=0; [1,2,3].each {|i|}; i
=> 0
irb(main):002:0> i=0; for i in [1,2,3]; end; i
=> 3

Ruby 1.8.6

irb(main):001:0> i=0; [1,2,3].each {|i|}; i
=> 3

Hash.index 非推奨

Ruby 1.9

irb(main):001:0> {1=>2}.index(2)
(irb):18: warning: Hash#index is deprecated; use Hash#key
=> 1
irb(main):002:0> {1=>2}.key(2)
=> 1

Ruby 1.8.6

irb(main):001:0> {1=>2}.index(2)
=> 1

アクション: Hash.keyを使用してください


Fixnum.to_sym ナウ・ゴーン

Ruby 1.9

irb(main):001:0> 5.to_sym
NoMethodError: undefined method 'to_sym' for 5:Fixnum

Ruby 1.8.6

irb(main):001:0> 5.to_sym
=> nil

(続き)Ruby 1.9

# Find an argument value by name or index.
def [](index)
  lookup(index.to_sym)
end

svn.ruby-lang.org/repos/ruby/trunk/lib/rake.rb


ハッシュキーの順序が変更されました

Ruby 1.9

irb(main):001:0> {:a=>"a", :c=>"c", :b=>"b"}
=> {:a=>"a", :c=>"c", :b=>"b"}

Ruby 1.8.6

irb(main):001:0> {:a=>"a", :c=>"c", :b=>"b"}
=> {:a=>"a", :b=>"b", :c=>"c"}

注文は広告掲載注文です


より厳密なUnicode正規表現

Ruby 1.9

irb(main):001:0> /\x80/u
SyntaxError: (irb):2: invalid multibyte escape: /\x80/

Ruby 1.8.6

irb(main):001:0> /\x80/u
=> /\x80/u

trそしてRegexp今ユニコードを理解する

Ruby 1.9

unicode(string).tr(CP1252_DIFFERENCES, UNICODE_EQUIVALENT).
  gsub(INVALID_XML_CHAR, REPLACEMENT_CHAR).
  gsub(XML_PREDEFINED) {|c| PREDEFINED[c.ord]}

pack そして unpack

Ruby 1.8.6

def xchr(escape=true)
  n = XChar::CP1252[self] || self
  case n when *XChar::VALID
    XChar::PREDEFINED[n] or 
      (n>128 ? n.chr : (escape ? "&##{n};" : [n].pack('U*')))
  else
    Builder::XChar::REPLACEMENT_CHAR
  end
end
unpack('U*').map {|n| n.xchr(escape)}.join

BasicObject より残忍な BlankSlate

Ruby 1.9

irb(main):001:0> class C < BasicObject; def f; Math::PI; end; end; C.new.f
NameError: uninitialized constant C::Math

Ruby 1.8.6

irb(main):001:0> require 'blankslate'
=> true
irb(main):002:0> class C < BlankSlate; def f; Math::PI; end; end; C.new.f
=> 3.14159265358979

アクション::: Math :: PIを使用します


委任の変更

Ruby 1.9

irb(main):002:0> class C < SimpleDelegator; end
=> nil
irb(main):003:0> C.new('').class
=> String

Ruby 1.8.6

irb(main):002:0> class C < SimpleDelegator; end
=> nil
irb(main):003:0> C.new('').class
=> C
irb(main):004:0>

欠陥17700


$ KCODEを使用すると警告が表示される

Ruby 1.9

irb(main):004:1> $KCODE = 'UTF8'
(irb):4: warning: variable $KCODE is no longer effective; ignored
=> "UTF8"

Ruby 1.8.6

irb(main):001:0> $KCODE = 'UTF8'
=> "UTF8"

instance_methods シンボルの配列

Ruby 1.9

irb(main):001:0> {}.methods.sort.last
=> :zip

Ruby 1.8.6

irb(main):001:0> {}.methods.sort.last
=> "zip"

アクション: instance_methods.includeを置き換えますか?method_defined?


ソースファイルのエンコーディング

ベーシック

# coding: utf-8

Emacs

# -*- encoding: utf-8 -*-

シバン

#!/usr/local/rubybook/bin/ruby
# encoding: utf-8

リアルスレッディング

  • レース条件
  • 暗黙的な順序付けの前提
  • テストコード

新着情報?

ハッシュキーとしてのシンボルの代替構文

Ruby 1.9

{a: b}

redirect_to action: show

Ruby 1.8.6

{:a => b}

redirect_to :action => show

ローカル変数のブロック

Ruby 1.9

[1,2].each {|value; t| t=value*value}

注入方法

Ruby 1.9

[1,2].inject(:+)

Ruby 1.8.6

[1,2].inject {|a,b| a+b}

to_enum

Ruby 1.9

short_enum = [1, 2, 3].to_enum
long_enum = ('a'..'z').to_enum
loop do
  puts "#{short_enum.next} #{long_enum.next}"
end

ブロックなし?列挙型!

Ruby 1.9

e = [1,2,3].each

ラムダショートハンド

Ruby 1.9

p = -> a,b,c {a+b+c}
puts p.(1,2,3)
puts p[1,2,3]

Ruby 1.8.6

p = lambda {|a,b,c| a+b+c}
puts p.call(1,2,3)

複素数

Ruby 1.9

Complex(3,4) == 3 + 4.im

10進数はまだデフォルトではありません

Ruby 1.9

irb(main):001:0> 1.2-1.1
=> 0.0999999999999999

正規表現の「プロパティ」

Ruby 1.9

/\p{Space}/

Ruby 1.8.6

/[:space:]/

中間のスプラット

Ruby 1.9

def foo(first, *middle, last)

(->a, *b, c {p a-c}).(*5.downto(1))

繊維

Ruby 1.9

f = Fiber.new do
  a,b = 0,1
  Fiber.yield a
  Fiber.yield b
  loop do
    a,b = b,a+b
    Fiber.yield b
  end
end
10.times {puts f.resume}

ブレーク値

Ruby 1.9

match =
   while line = gets
     next if line =~ /^#/
     break line if line.find('ruby')
   end

「ネストされた」メソッド

Ruby 1.9

def toggle
  def toggle
    "subsequent times"
  end
  "first time"
end

HTH!


3
HTH == "助けてくれる希望"。私はそれを調べなければなりませんでした。あなたが提供した答えを私に教えてもらえますか?
Chris Wesseling 2013

それとも幸せを意味するのですか?適宜編集してください。または、あなたの幸せ/希望があなたのすべての答えに数えられるなら、それを削除してください。;-)
Chris Wesseling 2013

10
いいえ、そのままにしておきます。全回答に対する割合として、それは非常に小さく、どちらの解釈も私には問題ありません。ありがとう。
Tim Sullivan

あなたが提供したリンクによると、委任の変更はバグであり、修正されました。
カイルストランド

「Range.include」間の不一致はどうですか?方法?Ruby v1.8.7はv1.9とは異なる結果をもたらします
Lucas Pottersky

12

大きな違いの1つは、Matzのインタープリターから、パフォーマンスを大幅に向上させるバイトコード仮想マシンであるYARVへの移行です。


4

多くの人が、つるはしよりもRubyプログラミング言語を推奨していますさらに言えば、1.8 / 1.9の違いの詳細がすべて含まれています。


1
どちらも好きです。つるはしの本はいくつかの事柄をより完全に説明していますが、Rubyプログラミング言語は何かをすばやくスキャンしたいときに適しています。「一言」の本に近い。
Tin Man、

1

さらにいくつかの変更:

スプラットシングルトン配列を返す:

def function
  return *[1]
end

a=function
  • ルビー1.9:[1]
  • ルビー1.8:1

配列引数

def function(array)
  array.each { |v| p v }
end
function "1"
  • ruby 1.8: "1"
  • ruby 1.9: "1":Stringの未定義のメソッド `each '
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.