Ruby journey (6) modules and multi-inheritance of Classes

Source: Internet
Author: User
Tags multiple inheritance in c

In addition to class, Ruby also supports module, which has two functions:
1. namespace used as a group method and constant to prevent name conflicts
2. Mixin classes can be mixed in. Instances of Mixin module classes have module methods.

If different classes are mixed into the same module, they can have the same function without inheriting a parent class.

You can include a module to implement multiple inheritance in C ++.

Module circularmodule
Pi =   3.1415926
Def Calculate (diamiter)
Return Diamiter * Pi
End
End

Class Circular
Include circularmodule
End

C = Circular. New
Puts C. Calculate ( 5 ) # Output 15.707963

As you can see, after using include to include a module, this class will contain the methods and constants in the module. The method uses the object name. method name, and the constant uses the Class Name: constant.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.