SlideShare ist ein Scribd-Unternehmen logo
1 von 33
Downloaden Sie, um offline zu lesen
Moving from C++ to Ruby
Leslie Brown
Career “Path”
• MIT - Aerospace Engineering
• Lockheed Martin - Systems Engineer
• Freedom High School - Math Teacher
• SimiGon - Software Engineer (more C++)
• Modernmeal - Ruby on Rails / Ember.js
C++
• Statically Typed
• Compiled
• Runs fast!
• Dynamically Typed
• Interpreted
• Relatively slow
Ruby
Ruby was written in C
What are they used for?
C++
Ruby
–Henry Maddocks
“Learn Ruby and C. With Ruby you can write
programs fast, with C you can write fast
programs.”
–Paul Lutus
“C++ is only efficient when it is running. It is not
efficient when you have a deadline to finish a
project and deliver working code.”
Different Strengths
Different Uses
Both powerful, but in different ways
First Impressions
• I don’t have to compile my code?
• Where are the header files?
• Where are the semicolons?
• I don’t have to declare the data type?
• Where are the constructors and destructors?
• Duck type?!?
Little Things
Ruby C++
nil NULL
this self
. ->
< :
require #include
Little Things (cont.)
• .any? .gsub!
• puts(“Hello World”) or puts “Hello World”
• 0 evaluates to true
• attributes / public member variables
• modules / namespaces
More Substantial Differences
• Can add and redefine methods and variables at
runtime
• No explicit references: a variable is an
automatically dereferenced name for an object
• No multiple inheritance (but mixins exist)
• Everything is an object
• Everything has a value (even if it’s nil)
Everything is an object
irb(main):004:0> 123.class
=> Fixnum
irb(main):005:0> 123.class.superclass
=> Integer
irb(main):006:0> 123.class.superclass.superclass
=> Numeric
irb(main):007:0> 123.class.superclass.superclass.superclass
=> Object
Everything has a value
(even if it’s nil)
irb(main):001:0> 3 + 5
=> 8
irb(main):002:0> if true then "thingy" end
=> "thingy"
irb(main):003:0> if false then "thingy" end
=> nil
irb(main):004:0> x = 3
=> 3
Everything has a value
x = 5
y = 10
z = if x > y
true
else
false
end
z #=> false
Making Life Easier
• irb is great
• Enumerable mixin
• vector<T>::const_iterator iter vs .each
• select, sort, include? map, inject/reduce
• Strings: trim, to_s, #{}, split, regex …
side by side code
Hello World
C++ Ruby
FizzBuzz
C++ Ruby
String Reverse
C++ Ruby
Substring Search
C++ Ruby
Person Class
C++
RubyC++
C++
Thanks to Dr. Graham Roberts for this example
Habits to Break
even_array = []
array.each do |i|
even_array << i if i % 2 == 0
end
even_array = array.select{ |i| i % 2 == 0 }
Habits to Break
sum = 0
for i in 0..array.length-1
sum += array[i]
end
sum = 0
array.each do |a|
sum += a
end
array.reduce(0) { |sum, i| sum + i }
array.reduce { |sum, i| sum + i }
array.reduce(0, :+)
array.reduce(:+)
Good Riddance
• linker errors
• writing getters and setters
• pointers … allocation / deallocation
• windows tithe day
• IDE?
Culture
My People
http://andrewvos.com/2011/02/21/amount-of-profanity-in-git-
commit-messages-per-programming-language/
Final Thoughts
• C++ before Ruby
• Appreciate Ruby!
• The Ruby Way
• OOP
References / Further Reading
• To Ruby From C and C++ https://www.ruby-
lang.org/en/documentation/ruby-from-other-
languages/to-ruby-from-c-and-cpp
• The Road to Ruby from C++ http://
www.devx.com/RubySpecialReport/Article/
34497
• ruby-talk thread https://www.ruby-forum.com/
topic/88609
• http://www.ibm.com/developerworks/linux/library/os-
sixrubyfeatures/index.html
• http://blog.petersobot.com/rewriting-in-cpp-for-fun-
speed-and-masochism
• http://blog.flatironschool.com/the-road-to-ruby-from-c
• http://chrismdp.com/2012/01/why-i-switched-from-
ruby-back-to-c-plus-plus
• Bjarne Stroustrup’s list of C++ Applications http://
www.stroustrup.com/applications.html
Comparing Languages
• http://rosettacode.org
• http://web.archive.org/web/20100420080552/http://
www.dmh2000.com/cjpr/
• http://www.dmoz.org/Computers/Programming/
Languages/Comparison_and_Review/
• http://www0.cs.ucl.ac.uk/staff/G.Roberts/
courses2005_6/1008/Slides3.pdf
• http://www.hammerprinciple.com/therighttool/items/
ruby/c-2

Weitere ähnliche Inhalte

Was ist angesagt?

Was ist angesagt? (20)

object oriented programing lecture 1
object oriented programing lecture 1object oriented programing lecture 1
object oriented programing lecture 1
 
Linq
LinqLinq
Linq
 
Introduction to React JS
Introduction to React JSIntroduction to React JS
Introduction to React JS
 
Functional programming with Java 8
Functional programming with Java 8Functional programming with Java 8
Functional programming with Java 8
 
Tuples in Python
Tuples in PythonTuples in Python
Tuples in Python
 
Django Introduction & Tutorial
Django Introduction & TutorialDjango Introduction & Tutorial
Django Introduction & Tutorial
 
Object oriented programming in python
Object oriented programming in pythonObject oriented programming in python
Object oriented programming in python
 
Introduction to Django
Introduction to DjangoIntroduction to Django
Introduction to Django
 
Presentation on data preparation with pandas
Presentation on data preparation with pandasPresentation on data preparation with pandas
Presentation on data preparation with pandas
 
The Magic of Auto Differentiation
The Magic of Auto DifferentiationThe Magic of Auto Differentiation
The Magic of Auto Differentiation
 
Introduction Django
Introduction DjangoIntroduction Django
Introduction Django
 
Python array
Python arrayPython array
Python array
 
SQL Join Basic
SQL Join BasicSQL Join Basic
SQL Join Basic
 
Onion architecture
Onion architectureOnion architecture
Onion architecture
 
Python Tutorial | Python Tutorial for Beginners | Python Training | Edureka
Python Tutorial | Python Tutorial for Beginners | Python Training | EdurekaPython Tutorial | Python Tutorial for Beginners | Python Training | Edureka
Python Tutorial | Python Tutorial for Beginners | Python Training | Edureka
 
DESIGN PATTERNS: Strategy Patterns
DESIGN PATTERNS: Strategy PatternsDESIGN PATTERNS: Strategy Patterns
DESIGN PATTERNS: Strategy Patterns
 
C# Tutorial
C# Tutorial C# Tutorial
C# Tutorial
 
Python - the basics
Python - the basicsPython - the basics
Python - the basics
 
Python
PythonPython
Python
 
Python Programming Tutorial | Edureka
Python Programming Tutorial | EdurekaPython Programming Tutorial | Edureka
Python Programming Tutorial | Edureka
 

Andere mochten auch

Cuestionario De Creacion De Ambientes 2
Cuestionario De Creacion De Ambientes 2Cuestionario De Creacion De Ambientes 2
Cuestionario De Creacion De Ambientes 2
Dannysiita
 

Andere mochten auch (18)

The Other Side of HTML
The Other Side of HTMLThe Other Side of HTML
The Other Side of HTML
 
SWIG Hello World
SWIG Hello WorldSWIG Hello World
SWIG Hello World
 
الضغوط
الضغوطالضغوط
الضغوط
 
Planificacion de poyectos
Planificacion de poyectosPlanificacion de poyectos
Planificacion de poyectos
 
Cuestionario De Creacion De Ambientes 2
Cuestionario De Creacion De Ambientes 2Cuestionario De Creacion De Ambientes 2
Cuestionario De Creacion De Ambientes 2
 
Командний успіх. Практичні поради з власного досвіду.
Командний успіх. Практичні поради з власного досвіду.Командний успіх. Практичні поради з власного досвіду.
Командний успіх. Практичні поради з власного досвіду.
 
Zaragoza turismo-53
Zaragoza turismo-53Zaragoza turismo-53
Zaragoza turismo-53
 
成功するデジタルクリエイティブのプロデュース術 - マスメディアンセミナー20150211
成功するデジタルクリエイティブのプロデュース術 - マスメディアンセミナー20150211成功するデジタルクリエイティブのプロデュース術 - マスメディアンセミナー20150211
成功するデジタルクリエイティブのプロデュース術 - マスメディアンセミナー20150211
 
AD_CV_15_08
AD_CV_15_08AD_CV_15_08
AD_CV_15_08
 
Судьба леопарда
Судьба леопардаСудьба леопарда
Судьба леопарда
 
Who You Gonna Call #SLIDEBUSTERS!
Who You Gonna Call #SLIDEBUSTERS!Who You Gonna Call #SLIDEBUSTERS!
Who You Gonna Call #SLIDEBUSTERS!
 
planificacion de hora clase
planificacion de hora claseplanificacion de hora clase
planificacion de hora clase
 
Tietojärjestelmät vanhuspalveluissa - tulevaisuuden visioita
Tietojärjestelmät vanhuspalveluissa - tulevaisuuden visioitaTietojärjestelmät vanhuspalveluissa - tulevaisuuden visioita
Tietojärjestelmät vanhuspalveluissa - tulevaisuuden visioita
 
RFP_サンプル
RFP_サンプルRFP_サンプル
RFP_サンプル
 
9/16 Top 5 Deep Learning
9/16 Top 5 Deep Learning9/16 Top 5 Deep Learning
9/16 Top 5 Deep Learning
 
Adobe Digital Index: State Of Banking Report
Adobe Digital Index: State Of Banking ReportAdobe Digital Index: State Of Banking Report
Adobe Digital Index: State Of Banking Report
 
Social Media Report - Brokerage Houses (India) September - October 2016
Social Media Report - Brokerage Houses (India) September - October 2016Social Media Report - Brokerage Houses (India) September - October 2016
Social Media Report - Brokerage Houses (India) September - October 2016
 
Leveraging Enterprise-Wide HR Shared Services in Higher Education
Leveraging Enterprise-Wide HR Shared Services in Higher EducationLeveraging Enterprise-Wide HR Shared Services in Higher Education
Leveraging Enterprise-Wide HR Shared Services in Higher Education
 

Ähnlich wie Moving from C++ to Ruby

How to really obfuscate your pdf malware
How to really obfuscate   your pdf malwareHow to really obfuscate   your pdf malware
How to really obfuscate your pdf malware
zynamics GmbH
 
How to really obfuscate your pdf malware
How to really obfuscate your pdf malwareHow to really obfuscate your pdf malware
How to really obfuscate your pdf malware
zynamics GmbH
 
Polyglot and Poly-paradigm Programming for Better Agility
Polyglot and Poly-paradigm Programming for Better AgilityPolyglot and Poly-paradigm Programming for Better Agility
Polyglot and Poly-paradigm Programming for Better Agility
elliando dias
 

Ähnlich wie Moving from C++ to Ruby (20)

مقایسه و بررسی چهارچوب ریلز
مقایسه و بررسی چهارچوب ریلزمقایسه و بررسی چهارچوب ریلز
مقایسه و بررسی چهارچوب ریلز
 
Children of Ruby
Children of RubyChildren of Ruby
Children of Ruby
 
Dapper: the microORM that will change your life
Dapper: the microORM that will change your lifeDapper: the microORM that will change your life
Dapper: the microORM that will change your life
 
How to really obfuscate your pdf malware
How to really obfuscate   your pdf malwareHow to really obfuscate   your pdf malware
How to really obfuscate your pdf malware
 
How to really obfuscate your pdf malware
How to really obfuscate your pdf malwareHow to really obfuscate your pdf malware
How to really obfuscate your pdf malware
 
Code for Startup MVP (Ruby on Rails) Session 2
Code for Startup MVP (Ruby on Rails) Session 2Code for Startup MVP (Ruby on Rails) Session 2
Code for Startup MVP (Ruby on Rails) Session 2
 
The Art of Refactoring
The Art of RefactoringThe Art of Refactoring
The Art of Refactoring
 
Intro to Clojure lightningtalk
Intro to Clojure lightningtalkIntro to Clojure lightningtalk
Intro to Clojure lightningtalk
 
Intro to Ruby on Rails
Intro to Ruby on RailsIntro to Ruby on Rails
Intro to Ruby on Rails
 
Rapid Application Development using Ruby on Rails
Rapid Application Development using Ruby on RailsRapid Application Development using Ruby on Rails
Rapid Application Development using Ruby on Rails
 
MacRuby: What is it? and why should you care?
MacRuby: What is it? and why should you care?MacRuby: What is it? and why should you care?
MacRuby: What is it? and why should you care?
 
Polyglot and Poly-paradigm Programming for Better Agility
Polyglot and Poly-paradigm Programming for Better AgilityPolyglot and Poly-paradigm Programming for Better Agility
Polyglot and Poly-paradigm Programming for Better Agility
 
Killing Shark-Riding Dinosaurs with ORM
Killing Shark-Riding Dinosaurs with ORMKilling Shark-Riding Dinosaurs with ORM
Killing Shark-Riding Dinosaurs with ORM
 
Swift for-rubyists
Swift for-rubyistsSwift for-rubyists
Swift for-rubyists
 
Lua. The Splendors and Miseries of Game Scripting
Lua. The Splendors and Miseries of Game ScriptingLua. The Splendors and Miseries of Game Scripting
Lua. The Splendors and Miseries of Game Scripting
 
How to-node-core
How to-node-coreHow to-node-core
How to-node-core
 
ITB2017 - Slaying the ORM dragons with cborm
ITB2017 - Slaying the ORM dragons with cbormITB2017 - Slaying the ORM dragons with cborm
ITB2017 - Slaying the ORM dragons with cborm
 
MacRuby
MacRubyMacRuby
MacRuby
 
A tale of 3 databases
A tale of 3 databasesA tale of 3 databases
A tale of 3 databases
 
Revenge of the ORMs
Revenge of the ORMsRevenge of the ORMs
Revenge of the ORMs
 

Kürzlich hochgeladen

The title is not connected to what is inside
The title is not connected to what is insideThe title is not connected to what is inside
The title is not connected to what is inside
shinachiaurasa2
 
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
masabamasaba
 
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
masabamasaba
 
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
masabamasaba
 

Kürzlich hochgeladen (20)

OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
 
The title is not connected to what is inside
The title is not connected to what is insideThe title is not connected to what is inside
The title is not connected to what is inside
 
%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand
 
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
 
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
 
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
 
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
 
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...
 
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital TransformationWSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
 
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
 
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
 
%in kempton park+277-882-255-28 abortion pills for sale in kempton park
%in kempton park+277-882-255-28 abortion pills for sale in kempton park %in kempton park+277-882-255-28 abortion pills for sale in kempton park
%in kempton park+277-882-255-28 abortion pills for sale in kempton park
 
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
 
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdfPayment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
 
AI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplateAI & Machine Learning Presentation Template
AI & Machine Learning Presentation Template
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial Goals
 
Architecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the pastArchitecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the past
 
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
 
Harnessing ChatGPT - Elevating Productivity in Today's Agile Environment
Harnessing ChatGPT  - Elevating Productivity in Today's Agile EnvironmentHarnessing ChatGPT  - Elevating Productivity in Today's Agile Environment
Harnessing ChatGPT - Elevating Productivity in Today's Agile Environment
 

Moving from C++ to Ruby