1. ホーム
  2. ruby

[解決済み] Ruby 1.8とRuby 1.9の違いは何ですか?

2023-01-24 02:10:37

質問

Ruby の "current" バージョン (1.8) と "new" バージョン (1.9) の違いがよくわかりません。違いとその理由について、"easy" または "simple" という説明はありますか?

どのように解決するのですか。

Sam Ruby は のスライドショーで説明しています。 .

この情報をインラインで簡単に参照できるようにするため、また、抽象的な将来にリンクが切れた場合に備えて、Sam のスライドの概要を紹介します。スライドショーは、レビューするのに圧倒されることはありませんが、このようにリストですべてをレイアウトすることも役に立ちます。

Ruby 1.9 - 主要な機能

  • パフォーマンス
  • 糸/繊維
  • エンコード/ユニコード
  • gems は現在 (ほとんど) 組み込まれています。
  • if文はRubyではスコープを導入しない。

何が変わったのか?

一文字の文字列。

ルビー1.9

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

ルビー1.8.6

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


文字列のインデックスです。

ルビー1.9

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

ルビー1.8.6

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


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

ルビー 1.9

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

ルビー1.8.6

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

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


Array.to_s 句読点を含むようになりました

ルビー 1.9

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

ルビー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'

ルビー1.8.6

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

アクション セミコロン、then、または改行を使用します。


ブロック変数がローカル変数をシャドウするようになりました

ルビー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

ルビー1.8.6

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


Hash.index 非推奨

ルビー 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

ルビー1.8.6

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

アクション Hash.keyを使用する


Fixnum.to_sym 現在休止中

ルビー 1.9

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

ルビー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"}

ルビー1.8.6

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

順番は挿入順


より厳密な Unicode 正規表現

ルビー 1.9

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

ルビー1.8.6

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


tr そして Regexp これでユニコードがわかる

ルビー1.9

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


pack そして unpack

ルビー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

ルビー 1.9

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

ルビー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


デレゲーションの変更

ルビー 1.9

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

ルビー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 を使用すると警告が表示されます。

ルビー1.9

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

ルビー1.8.6

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


instance_methods 今度は記号の配列

ルビー1.9

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

ルビー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


リアルスレッディング

  • レース条件
  • 暗黙の順序の仮定
  • テストコード

新着情報

シンボルをハッシュ・キーとする代替構文

ルビー1.9

{a: b}

redirect_to action: show

ルビー1.8.6

{:a => b}

redirect_to :action => show


ローカル変数をブロックする

ルビー1.9

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


インジェクトメソッド

ルビー1.9

[1,2].inject(:+)

ルビー1.8.6

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


to_enum

ルビー 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


ブロックがない?列挙してください

ルビー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]

ルビー1.8.6

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


複素数

ルビー 1.9

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


Decimal はまだデフォルトではありません。

ルビー 1.9

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


Regexの "プロパティ"

ルビー1.9

/\p{Space}/

ルビー1.8.6

/[:space:]/


スプラッター・イン・ミドル

ルビー1.9

def foo(first, *middle, last)

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


繊維

ルビー 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}


ブレイク値

ルビー1.9

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


「ネストされた(Nested)メソッド

ルビー1.9

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


HTH!