This course will be retired on June 1, 2025.
Heads up! To view this whole video, sign in with your Courses account or enroll in your free 7-day trial. Sign In Enroll

- 2x 2x
- 1.75x 1.75x
- 1.5x 1.5x
- 1.25x 1.25x
- 1.1x 1.1x
- 1x 1x
- 0.75x 0.75x
- 0.5x 0.5x
In Ruby, a Struct is a shortcut to creating a class with accessor methods. You could create these yourself using simple classes but structs save you a bit of time.
Links
Code Samples
Here is our struct:
Customer = Struct.new(:name, :email) do
def name_with_email
"#{name} <#{email}>"
end
end
We can then create a new instance and iterate through the attributes:
customer = Customer.new("Jason", "jason@teamtreehouse.com")
customer.each_pair do |name, value|
puts "#{name} - #{value}"
end
Related Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign up-
aronlilland
8,951 Points2 Answers
View all discussions for this video
Related Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign up
You need to sign up for Treehouse in order to download course files.
Sign upYou need to sign up for Treehouse in order to set up Workspace
Sign up