Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I came from Java and now I am working more with ruby. One language feature I am not familiar with is the module. I am wondering what exactly is a module and when do you use one? Also why use a module over a class?

share|improve this question

3 Answers

up vote 43 down vote accepted

The first answer is good and gives some structural answers, but another approach is to think about what you're doing. Modules are about providing methods that you can use across multiple classes - think about them as "libraries" (as you would see in a Rails app). Classes are about objects; modules are about functions.

For example, authentication and authorization systems are good examples of modules. Authentication systems work across multiple app-level classes (users are authenticated, sessions manage authentication, lots of other classes will act differently based on the auth state), so authentication systems act as shared APIs.

You might also use a module when you have shared methods across multiple apps (again, the library model is good here).

share|improve this answer
2  
Is the module same as Interfaces in java? – Saad Rehman Shah Jun 6 '12 at 5:53
1  
@Caffeine not really because Ruby modules actually include implementations, whereas interfaces in Java are abstract – Jorge Israel Peña Jan 12 at 6:34
Ahh! I see! Modules are Packages or JARs and Classes are Classes! – Chloe May 14 at 16:34

Please correct if something is wrong or needs to be added

share|improve this answer
10  
+0 for using an image - it can't be read by visually impaired people, and can't be translated by google translate. See also meta.stackoverflow.com/questions/116050/… – Andrew Grimm Mar 19 '12 at 21:44
1  
upps :) I didn't know that. Will take into consideration in the future . Thanks – shevchik Mar 19 '12 at 22:05
What is the superclass of 'Class' class ? – Aashish P Oct 15 '12 at 12:15
1  
I got the hierarchy, Class -> Module -> Object -> BasicObject. Cool!! – Aashish P Oct 15 '12 at 12:22
13  
@andrew this answer is great, and SO doesn't offer an alternative for formatting tables. I've read the meta you linked to, as well as this one meta.stackoverflow.com/questions/73566/…. If you want something done right, you'd better provide the means to do it right. – Ziggy Mar 10 at 5:18

This site has a good explanation of how modules are different.

Basically, the module cannot be instantiated. When a class includes a module, a proxy superclass is generated that provides access to all the module methods as well as the class methods.

A module can be included by multiple classes. Modules cannot be inherited, but this "mixin" model provides a useful type of "multiple inheritrance". OO purists will disagree with that statement, but don't let purity get in the way of getting the job done.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.