Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Ruby Struct
Search
Sponsored
·
Your Podcast. Everywhere. Effortlessly.
Share. Educate. Inspire. Entertain. You do you. We'll handle the rest.
→
Ken Collins
April 11, 2012
2
630
Ruby Struct
Using Ruby’s Struct Class.
Ken Collins
April 11, 2012
Tweet
Share
More Decks by Ken Collins
See All by Ken Collins
Experts.js @ Norfolk.js
metaskills
0
90
The Rise of AI Copilots
metaskills
0
180
Real-World AI Automation with Lambda & Bedrock
metaskills
0
140
The Lambda Sidecar Pattern for Event-Driven Kubernetes
metaskills
0
410
The Case for Rails on Lambda v1
metaskills
0
740
Learn to Program The Cloud with Ruby & AWS Lambda
metaskills
0
110
Full-Stack to Functions & Back Again
metaskills
0
360
AWS Lambda & Ruby/Rails with SAM
metaskills
1
4.6k
Turbo Applications - Winning with Ajax + pushState + Rails
metaskills
0
310
Featured
See All Featured
The Myth of the Modular Monolith - Day 2 Keynote - Rails World 2024
eileencodes
26
3.3k
jQuery: Nuts, Bolts and Bling
dougneiner
65
8.4k
実際に使うSQLの書き方 徹底解説 / pgcon21j-tutorial
soudai
PRO
196
71k
Balancing Empowerment & Direction
lara
5
880
SEO for Brand Visibility & Recognition
aleyda
0
4.2k
16th Malabo Montpellier Forum Presentation
akademiya2063
PRO
0
48
Test your architecture with Archunit
thirion
1
2.1k
Taking LLMs out of the black box: A practical guide to human-in-the-loop distillation
inesmontani
PRO
3
2k
The Curious Case for Waylosing
cassininazir
0
230
Prompt Engineering for Job Search
mfonobong
0
160
How To Stay Up To Date on Web Technology
chriscoyier
791
250k
How to train your dragon (web standard)
notwaldorf
97
6.5k
Transcript
Ruby’s Struct Class Ken Collins metaskills.net typdef struct { int
id; char *name; } Awesome; Monday, November 14, 11
A Struct is a convenient way to bundle a number
of attributes together, using accessor methods, without having to write an explicit class. Monday, November 14, 11
Ad Hoc Example Language = Struct.new(:name, :class_based) ruby = Language.new
"Ruby", true js = Language.new "JavaScript", false objc = Language.new "Objective-C" ruby # => #<struct Language name="Ruby", class_based=true> js # => #<struct Language name="JavaScript", class_based=false> ruby.class_based # => true js.class_based # => false objc.class_based = true objc.class_based # => true Monday, November 14, 11
Sub Class Example class MyObject < Struct.new(:id, :name, :key) end
o = MyObject.new # => #<struct MyObject id=nil, name=nil, key=nil> o.id # => nil o.name # => nil o.id = 12345 o.name = "Test Object" o # => #<struct MyObject id=12345, name="Test Object", key=nil> Monday, November 14, 11
But Why Structs? class MyObject attr_accessor :id, :name, :key def
initialize(*args) @id, @name, @key = args end end o = MyObject.new 12345, "Test Object" o.id # => 12345 o.name # => "Test Object" Monday, November 14, 11
But Why Structs? Monday, November 14, 11
But Why Structs? Convenient Alternative. Monday, November 14, 11
But Why Structs? Convenient Alternative. Attribute Methods With [] &
[]= Can Be Powerful. Not ivar based. Monday, November 14, 11
But Why Structs? Convenient Alternative. Attribute Methods With [] &
[]= Can Be Powerful. Not ivar based. Easy Enumeration Of Attribute Data. Monday, November 14, 11
But Why Structs? Convenient Alternative. Attribute Methods With [] &
[]= Can Be Powerful. Not ivar based. Easy Enumeration Of Attribute Data. Default Equality On All Attributes. Monday, November 14, 11
Attribute Accessors class Person < Struct.new(:name) def name parts =
self[:name].to_s.split(' ') capped_parts = parts.map { |x| x.capitalize } capped_parts.join(' ') end end p = Person.new "KEN coLLins" p.name # => "Ken Collins" p[:name] = 'mETAskiLLs' p.name # => "Metaskills" Monday, November 14, 11
Easy Enumeration Customer = Struct.new(:name, :address, :zip) joe = Customer.new("Joe
Smith", "123 Maple, Anytown NC", 12345) joe.each { |x| x } # >> Joe Smith # >> 123 Maple, Anytown NC # >> 12345 joe.each_pair { |name, value| puts("#{name} => #{value}") } # >> name => Joe Smith # >> address => 123 Maple, Anytown NC # >> zip => 12345 Monday, November 14, 11
Default Attribute Equality Customer = Struct.new(:name, :address, :zip) joe =
Customer.new("Joe Smith", "123 Maple, Anytown NC", 12345) joejr = Customer.new("Joe Smith", "123 Maple, Anytown NC", 12345) jane = Customer.new("Jane Doe", "456 Elm, Anytown NC", 12345) joe == joejr #=> true joe == jane #=> false Monday, November 14, 11
Thanks! Ken Collins metaskills.net Monday, November 14, 11