Ruby的Struct用于快速将很多属性一起绑定到对象上。
- #定义
- class Man < Struct.new(:name, :age)
- end
- #使用
- man = Man.new("allen", 24)
- puts "#{man.name} is #{man.age} years old" # => allen is 24 years old
#定义 class Man < Struct.new(:name, :age) end #使用 man = Man.new("allen", 24) puts "#{man.name} is #{man.age} years old" # => allen is 24 years old
还有一种更强大的,OpenStruct可以动态的绑定属性。
- require 'ostruct'
- record = OpenStruct.new
- record.name = "John Smith"
- record.age = 70
- record.pension = 300
- puts record.name # => "John Smith"
- puts record.address # => nil
- #还可以支持用hash构建对象
- hash = { "country" => "Australia", :population => 20_000_000 }
- data = OpenStruct.new(hash)
- puts data # => <OpenStruct country="Australia" population=20000000>
- #动态添加一个block
- data.hello = Proc.new {puts "hello"}
- data.hello.call # => "hello"
相关推荐
OpenStruct子类,该子类将嵌套的哈希属性作为RecursiveOpenStructs返回。 用法 它允许在一系列方法中调用哈希中的哈希: ros = RecursiveOpenStruct . new ( { wha : { tagoo : 'siam' } } ) ros . wha . tagoo # =...
对Struct简单扩展,使其与Hash更兼容,而没有OpenStruct的性能损失 安装 将此行添加到应用程序的 Gemfile 中: gem 'super_struct' 然后执行: $ bundle 或者自己安装: $ gem install super_struct 用法 ...
**Struct** 和 **OpenStruct** 都是用来创建简单的数据容器的类,但它们之间存在一些显著的区别: - **Struct** 在定义时需要明确声明所有字段,而 **OpenStruct** 可以动态添加属性。 - 性能方面,**Struct** 优于...
除了使用Hash或OpenStruct ,您还可以使用ImmutableStruct使您的类型更加清晰,这几乎同样方便。 安装 添加到您的Gemfile : gem 'immutable-struct' 然后安装: bundle install 如果不使用 bundler,只需使用 ...
FastOpenStruct是Ruby OpenStruct的重新实现,可以避免在每次实例化时使MRI的方法缓存无效。 应该可以替代OpenStruct。 表现 当您的OpenStructs倾向于具有静态属性集时,FastOpenStruct会非常快: λ ruby -I./...