Compilation of Ruby metaprogramming basics study notes
Note 1:
Code contains variables, classes and methods, collectively called language construct.
# test.rb class Greeting def initialize(text) @text = text end def welcome @text end end my_obj = Greeting.new("hello") puts my_obj.class puts my_obj.class.instance_methods(false) #false means not inherited puts my_obj.instance_variables result => Greeting welcome @text
Summary:
Instance methods are inherited from the class, and instance variables exist in the object itself.
Both classes and objects are first-class values in Ruby.
Application example:
mongo API for ruby => Mongo::MongoClient # testmongo.rb require 'mongo' require 'pp' include Mongo # the members of replcation-set # test mongodb server version 2.6.0 host = "192.168.11.51" # The port of members # If the port is 27017 by default then otherport don't need to assignment otherport = "" port = otherport.length != 0 ? otherport : MongoClient::DEFAULT_PORT opts = {:pool_size => 5, :pool_timeout => 10} # Create a new connection client = MongoClient.new(host, port, opts) # puts client.class puts client.class.constants puts client.instance_variables puts client.class.instance_methods(false)
Output separately
Constant, Instance Attribute, Instance Method
Note 2: Dynamic calling
When you call a method, you are actually sending a message to an object.
class MyClass def my_method(args) args * 10 end end obj = MyClass.new puts obj.my_method(5) puts "**" puts obj.send(:my_method, 6)
Result:
50 ** 60
You can use object#send() instead of dot notation to call the MyClass#my_method() method:
obj.send(:my_method, 6)
send() method is the message to be sent to the object, which can be a symbol (:symbol) or a string. The other parameters will be passed directly to the calling method.
The technology that can dynamically decide which method to call is called Dynamic Dispatch.
Note 3: The difference between symbols and strings
1. Symbols are immutable and the characters in the string can be modified.
2. Operations on symbols are faster.
3. Usually symbols are used to represent the names of things.
For example:
puts 1.send(:+, 4) => 5 String#to_sym(),String#intern() => string to symbol String#to_s(),String#id2name() => symbol to string "caoqing".to_sym() => :caoqing :caoqing.to_s() => "caoqing"
The pattern dispatch method is used in dynamic dispatch.
puts obj.class.instance_methods(true).delete_if{ |method_name| method_name !~ /^my/} result => my_method
Note 4: Dynamic Definition
Use the Module#define_method() method to define a method.
class MyClass define_method :my_method do |args| args * 3 end end obj = MyClass.new puts obj.my_method(10)
Result: <code><font face="Courier New">30</font><br />
30
# test.rb str = "My name is caoqing." def str.title? self.upcase == self end puts str.title? puts str.methods.grep(/^title?/) puts str.singleton_methods
false title? title?
Note 5:
obj.my_method Cla.class_method
Duck Typing: Whether the object can respond to methods, which can be ordinary methods or singleton methods.
def obj.method # method body end
obj can be an object reference, a constant class name or self.
Class Macro
A member of the Module#attr_*() method to define the accessor. Class macros are not keywords but methods.
Eigenclass
The singleton method cannot be found and saved in the ancestor chain according to the conventional method. obj is an object that cannot be saved and cannot exist in the class. Otherwise, all instances can share this method.
An object has a unique hidden class, called the object's eigenclass.
class << obj code end
If you want to get a reference to eigenclass, you can return self when leaving the scope:
Appendix:
The difference between class variables, instance variables, class methods and instance methods
@@
@
self(?clas,::).method : Class method
method : Instance method
# test.rb class Foo @@var = "lion" def self.method01 puts "cat" @name = "cat" @@var = "cat" puts @name end def self.method02 puts "tiger" @name = "tiger" @@var = "tiger" puts @name end def self.method03 puts "dog" @name = "dog" @@var = "dog" puts @name end def putsname puts @name puts @@var end end obj = Foo.new # obj.method01 => (NoMethodError) obj.putsname => lion Foo.method01 Foo.method02 Foo.method03 obj.putsname
Result:
lion cat cat tiger tiger dog dog dog

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

C++ is a programming language widely used in various fields. Its template metaprogramming is an advanced programming technique that allows programmers to transform types and values at compile time. Template metaprogramming is a widely discussed topic in C++, so questions related to it are quite common in interviews. Here are some common template metaprogramming interview questions in C++ that you may be asked. What is template metaprogramming? Template metaprogramming is a technique for manipulating types and values at compile time. It uses templates and metafunctions to generate based on types and values

Many people may notice a phenomenon, that is, in some modern programming languages (of course, not referring to "recent" programming languages), the increment and decrement operators have been cancelled. In other words, there is no such expression as i++ or j-- in these languages, but only i+=1 or j-=1 Such an expression. This answer will explore the background and reasons for this phenomenon from the perspective of design philosophy. Strictly speaking, it may be biased to say "i++ is disappearing", because it seems that only Python, Rust and Swift among mainstream programming languages do not support the increment and decrement operators. When I first came into contact with Python, this was also

Reflection is very useful in metaprogramming and code generation in the Go language: Metaprogramming: allows the program to create new types, functions, and variables at runtime, and modify existing type structures. Code generation: Code snippets can be generated dynamically and executed at runtime, such as generating functions that implement a specific interface.

C++ metaprogramming plays a vital role in HPC, through its ability to manipulate and generate code, it provides a powerful tool for optimizing code performance and maintainability. Specific applications include: SIMD vectorization: creating code customized for a specific SIMD processor to take advantage of processor capabilities and improve performance. Code generation: Use templates to dynamically create and optimize code to improve code maintainability. Introspection: View and modify the code structure at runtime to enhance the debuggability and flexibility of the code. Metadata programming: Process the relationship between data and metadata to achieve data-driven programming.

The main difference between Go and Ruby is that Go is a statically typed compiled language that supports lightweight parallelism and efficient memory management, and is suitable for writing high-concurrency applications; Ruby is a dynamically typed interpreted language that supports true parallelism but memory management It requires manual control and is suitable for writing flexible web applications.

Ruby operates MySQL using mysql2 to connect to mysql and operate mysql. geminstallmysql2 connects to mysql to establish a connection: require'mysql2'conn=Mysql2::Client.new({host:'192.168.200.73',username:'root',password:'P@ssword1!'}) The accepted connection options include: Mysql2::Clie

Metaprogramming can significantly improve the safety, correctness, and maintainability of C++ code. It is based on the ability to inspect type information in code to implement static assertions. Generate type-safe code using template metaphysics. Static checking of error conditions in error handling.

How to use MySQL and Ruby to implement a simple data analysis report function Introduction: In today's data-driven era, data analysis plays a crucial role in corporate decision-making and development. As an important part of data analysis, data analysis reports are of great significance for organizing, visualizing and interpreting data. This article will introduce how to use MySQL and Ruby to implement a simple data analysis report function, and provide corresponding code examples. 1. Database design and table creation must realize data analysis and reporting functions
