Common Ruby file operation code instances and ruby code instances
# Create a 222. rb file and the input character File = file. open ("222.rb"," w + ") file. puts "123 \ nwadwa \ n12124124 \ ndwdw" file. close # output 222. rb content File. open ("222.rb"," r + ") do | file | while line = file. getsputs lineendend # directly use IO to operate the file IO. foreach ("222.rb") do | line | puts line if line = ~
Ruby-implemented file self-deletion code sharing, ruby-implemented code sharing
Because the File Deletion mechanism in windows is different from that in unix like, so does not guarantee that the following code can be used in windows. Which of the following kids shoes can help me test it in windows!
Copy codeThe Code is as follows:#! /Usr/bin/ruby
5. times do |
1. Auxiliary methods2. StringEnter "IRB" into the ruby command-line development environment, and the controller starts by executing "rails console" on the command line.(1) String connection>>"foo"+"bar"="foobar" (2) Interpolation by special syntax #{}>>first_name="Amy" ="Amy">>" #{first_name} Sun"+"Amy Sun "(3) The difference between a single-quote string and a double-quote string: Single-quote strings they really are literal values, contain only the
When I started my ruby journey, I wrote my study notes for people with other OO language experiences. Let's take a look at the magic ruby.
The first sample! First meeting.
#
! /Usr/bin/ENV Ruby
Class
MegagreeterAttr_accessor: names
#
Create the object
Def
Initialize (names
=
"
World
"
)@ Names
=
NamesEnd
#
Say hi
Explain the code block object Proc in Ruby, and explain the ruby object proc.
Proc object
Proc is a block conversion object. There are four methods to create a Proc:
Sample Code
# Method 1 inc = Proc. new {| x + 1} inc. call (2) #=> 3 # method 2 inc = lambda {| x + 1} inc. call (2) #=> 3 # method 3 inc =-> (x) {x + 1} inc. call (2) #=> 3 # Method 4 inc = proc {| x + 1} inc. call (2) # => 3
In addition to th
Various sorting algorithms implemented by Ruby and Ruby
Time Complexity: Average (n ^ 2)
Bubble sortCopy codeThe Code is as follows:Def bubble_sort ()(A. size-2). downto (0) do | I |(0.. I). each do | j |A [j], a [j + 1] = a [j + 1], a [j] if a [j]> a [j + 1]EndEndReturnEnd
Selection sortCopy codeThe Code is as follows:Def selection_sort ()B = []A. size. times do | I |Min = a. minB A. delete_at (a. index (m
Class methods and class extensions in Ruby object-oriented programming, ruby Object-Oriented Programming
Class Method
The essence of a class method is a single-piece method that lives in a single-piece class of this class. Three methods are defined:
# Method 1 def MyClass. a_class_method; end # method 2 class MyClass def self. anther_class_method; endend # method 3 * class MyClass class
The third method in
Ruby-based optimal binary search tree algorithm and ruby-based optimal binary search algorithm
The pseudo code in the introduction to algorithms is rewritten, plus the constructor for the solution of the first question in the Introduction Class Exercises.Copy codeThe Code is as follows:# Encoding: UTF-8= BeginAuthor: xu jinDate: Nov 11,201 2Optimal Binary Search TreeTo find by using EditDistance algorithmRe
Comparison of class variables and instance variables in Ruby, ruby class variable instances
1. The class variable name starts with @. A Class variable is shared by all instance objects of the class. The instance variable name starts with @, and each instance object has its own different instance variables;
2. class variables must be initialized before use; otherwise, an error is reported during use. If the
Summary of loop statements in ruby and summary of ruby loop statements
While (when ...) Loop
While Condition Statement 1; Statement 2; statement... End
Single Row while LOOP
(Statement 1; Statement 2; statement... ) While Condition
Until (...) Loop
Until condition = while not (condition)
For... In Loop
For variable in obj
Arrays in ruby are created by square brackets. The initial values can be placed in square brackets and separated by commas. array elements can be of different types and support addition and multiplication.
Ary = [1, 2, "3"]Ary * 2 Returns [1, 2, "3", 1, 2, "3"]Ary + ["Lee", "ho"] returns [1, 2, "3", "Lee", "ho"]Ary [] returns [1, 2] and obtains two elements starting from position 0.Ary [0 .. 2] returns [1, 2, "3"] From position 0 to position 2
Arr
I used to want to use Java for something similar. Today I see Ruby already has
-----
Gem install
Chardet-y
-----
Require 'rubygems'Require 'universaldetector'Require 'net/http'Net: http. version_1_2Net: http. Start ('www .sina.com.cn ') {| HTTP |Data = http. Get ("/"). BodyP universaldetector: chardet (data)}It is a Python version transplant, and there is a confidence parameter. I tested several sites in China and it is very accurate. However,
inheritance of loading modules and classes:
Module MdefPuts "' The ' method ' in module M"EndEnd
Class CInclude MEnd
Class D End
obj = d.newObj.reportThe example method is defined in module M, the C class is mixed with module M, Class D is a subclass of Class C, and obj is an instance of Class D, the object of obj can call the method.
From an object's perspective, suppose you are an object, someone sends you a message, you have to find a way to respond, and the idea is probably like this:
Summary
In the last few years, scripting languages have become increasingly popular in Web application programming. This paper attempts to find the differences, advantages and disadvantages in today's three most popular languages: PHP, Python, and Ruby. Obviously, they have their own views and support, so it is a difficult task to state objective facts and to satisfy a scientific approach. These three languages will evaluate the history, evolution,
The customer's server is Ubuntu + apache2 + ruby on rails. Currently, some pages on the customer's server always report the 500 error. The ruby language is only known and has not been studied in depth. I have never set up a ruby server environment, and it is strange that the customer uses ubuntu as the server. After installing
Build a Ruby On Rails platform using CentOS
System CentOS6.5 x64
Ruby On Rails is an open-source Web framework written in Ruby, similar to J2EE and PHP. Ruby On Rails is a very beautiful Web development framework and incorporates the essence of agile development: conventions are greater than configurations. You will fi
Use Eclipse for Ruby development easily-Linux general technology-Linux programming and kernel information. The following is a detailed description. [Indent] About three years ago, developerWorks released the "Ruby Development Tools plug-in using Eclipse", which introduced some features provided in the Ruby Development Tools (RDT) Plug-in of Eclipse, it was V0.5 a
One: Website and its blog:
1.http://ihower.tw/training/
The Ruby on Rails Learning Network is a professional website that communicates to learn about the knowledge of Ruby on Rails.
2.http://www.javaeye.com/wiki/rails_weeklyRails Weekly One question
3.http://www.5iror.com/Ihower's Tutorial
4.Http://railstutorial.org/book
An English course
5.Http://www.javaeye.com/wiki/rails-everydayEvery day a dose
Ruby is an object-oriented metaprogramming language that surprised many developers and even raises the question: is there a really better language than Java and C? This article will give a preliminary discussion on the ruby language and try to answer this question.
I. Introduction
Have you ever heard of Ruby? Today, it has become a popular topic in the software
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.