The Basics of Creating and Using Ruby Modules

Ruby on Rails is a wonderful open source full-stack web application framework favoring convention over configuration.  Med återanvändbara, lätt konfigurerbara komponenter som normalt används för att skapa applikationer går det snabbare och enklare att bygga applikationer i Rails, vilket resulterar i förbättrad produktivitet och affärstillväxt. Det vinner inflytande bland utvecklare eftersom det är flexibelt, skalbart och enkelt för webbutvecklare att skriva och underhålla applikationer. 

Ruby on Rails lägger tonvikten på att använda kända tekniska mönster och principer för att minska arbetsbelastningen när man bygger webbapplikationer. Även om det finns flera metoder för att lösa en programmeringsutmaning, säger Ruby sig förlita sig på vanliga mönster som gör Rails webbplatser lättare att underhålla och uppgradera. Bibliotek med öppen källkod med mindre block av Rails-kod som löser särskilda problem används vanligtvis för att minska utvecklingskostnader. Med hjälp av sådana kodblock kan utvecklare infoga stabila, väl beprövade ädelstenar istället för att lägga tid på att skriva samma slags koder. Ett av de mest kraftfulla verktygen i en Ruby-programmerares verktygslåda är modulen. Rubin Modules provide a structure to collect Ruby classes, methods, and constants into a single, separately named and defined unit.

Detta är användbart så att du kan undvika konflikter med befintliga klasser, metoder och konstanter, och även så att du kan lägga till (mixa in) modulernas funktionalitet i dina klasser.

Creating a Module in Ruby

Creating a module is similar to creating a class, except you use the module keyword instead of the class keyword.

module MyFirstModule
  def say_hello
    puts "Hello"
  end
end

Modules cannot be instantiated. To use a module, you must either include or extend it within a class.

Using include and extend

  • inkludera

Mixes the module’s methods in as instance methods of the class.

  • förlänga

Mixes the module’s methods in as class methods of the class.

Exempel

module ReusableModule
  def module_method
    puts "Module Method: Hi there!"
  end
end

class ClassThatIncludes
  include ReusableModule
end

class ClassThatExtends
  extend ReusableModule
end

puts "Include"
ClassThatIncludes.new.module_method
# => "Module Method: Hi there!"

puts "Extend"
ClassThatExtends.module_method
# => "Module Method: Hi there!"

Other Important Concepts About Modules in Ruby

1. Method Lookup Basics:

module M
  def report
    puts "'report' method in module M"
  end
end

class C
  include M
end

class D < C
end
obj = D.new obj.report

Produktion:

'report' method in module M

How Method Lookup Works

When a Ruby object receives a message (method call), it searches for the method in this order:

  1. The objects class (D)
  2. Modules included in the class (D)
  3. The superclass (C)
  4. Modules included in the superclass (M)
  5. Continue up the inheritance chain

In this case:

  • D does not define report
  • C does not define report
  • C includes module M
  • M defines report, so Ruby executes it

2. Defining the Same Method More Than Once

If a method is defined multiple times, the last definition takes precedence. This applies to both classes and modules.

module InterestBearing
  def calculate_interest
    puts "Placeholder! We're in module InterestBearing."
  end
end

class BankAccount
  include InterestBearing

  def calculate_interest
    puts "Placeholder! We're in class BankAccount."
    puts "And we're overriding the calculate_interest method!"
  end
end

account = BankAccount.new
account.calculate_interest

Produktion:

Placeholder! We're in class BankAccount.
And we're overriding the calculate_interest method!

The class method overrides the module method.

3. Mixing in Multiple Ruby Modules with the Same Method Name

module M
  def report
    puts "'report' method in module M"
  end
end

module N
  def report
    puts "'report' method in module N"
  end
end

class C
  include M
  include N
end

c = C.new
c.report

Produktion:

'report' method in module N

The last included module wins because it appears first in the method lookup path.

4. Including a Ruby Module More Than Once

class C
  include M
  include N
  include M
end

c = C.new
c.report

Produktion:

'report' method in module N

Förklaring

Re-including a module has no effect if the module is already in the lookup path. Ruby does not move it to the top again. The most recently included new module (N) still takes precedence.

5. Using super with Ruby Modules

The super keyword allows you to call the next method up the method lookup chain.

module M
  def report
    puts "'report' method in module M"
  end
end

class C
  include M

  def report
    puts "'report' method in class C"
    puts "About to trigger the next higher-up report method..."
    super
    puts "Back from the 'super' call."
  end
end

c = C.new
c.report

Produktion:

'report' method in class C
About to trigger the next higher-up report method...
'report' method in module M
Back from the 'super' call.

What Happens Here

  • Ruby first executes report in class C
  • super calls the next report method in the lookup chain (from module M)
  • Control then returns back to the class method

RailsCarma har arbetat på RoR från början och med en stark arbetsstyrka utbildad i RoR har det vuxit till att bli ett mycket pålitligt namn i slutändan Ruby on Rails konsulttjänster, arkitektur, byggnad, förvaltning och utbyggnad till företag runt om i världen. 

Läs mer : 

Kontakta oss.

Prenumerera för de senaste uppdateringarna

relaterade inlägg

Om inläggsförfattare

Lämna en kommentar

Din e-postadress kommer inte publiceras. Obligatoriska fält är märkta *


sv_SESwedish